nixpkgs/pkgs/applications/misc/genact/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
654 B
Nix
Raw Normal View History

2022-10-09 17:10:52 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
2021-08-26 02:29:33 +00:00
rustPlatform.buildRustPackage rec {
pname = "genact";
2022-10-09 03:38:13 +00:00
version = "1.2.0";
2021-08-26 02:29:33 +00:00
src = fetchFromGitHub {
owner = "svenstaro";
repo = pname;
rev = "v${version}";
2022-10-09 03:38:13 +00:00
sha256 = "sha256-POOXawhxrPT2UgbSZE3r0br7cqJ0ao7MpycrPYa/oCc=";
2021-08-26 02:29:33 +00:00
};
2022-10-09 17:10:52 +00:00
cargoSha256 = "sha256-2c34YarMFw2CK+7zn41GL5tXfXfnw3NvGtgSlPH5d64=";
2021-08-26 02:29:33 +00:00
meta = with lib; {
description = "A nonsense activity generator";
homepage = "https://github.com/svenstaro/genact";
2022-09-09 23:49:53 +00:00
changelog = "https://github.com/svenstaro/genact/blob/v${version}/CHANGELOG.md";
2021-08-26 02:29:33 +00:00
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}