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

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

23 lines
569 B
Nix
Raw Normal View History

2021-08-26 02:29:33 +00:00
{ fetchFromGitHub, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "genact";
2022-09-07 13:09:32 +00:00
version = "1.0.0";
2021-08-26 02:29:33 +00:00
src = fetchFromGitHub {
owner = "svenstaro";
repo = pname;
rev = "v${version}";
2022-09-07 13:09:32 +00:00
sha256 = "sha256-sKFI7r0mwmzKiHy9HmskS10M5v/jZj/VeO4F9ZQl2g0=";
2021-08-26 02:29:33 +00:00
};
2022-09-07 13:09:32 +00:00
cargoSha256 = "sha256-79IC51xdkelgsRJF+rz9UOTfrJ/HS6PbkyxySe0Qk4Q=";
2021-08-26 02:29:33 +00:00
meta = with lib; {
description = "A nonsense activity generator";
homepage = "https://github.com/svenstaro/genact";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}