genact: init at 0.11.0
This commit is contained in:
parent
ee006e93df
commit
448983cc4d
2 changed files with 24 additions and 0 deletions
22
pkgs/applications/misc/genact/default.nix
Normal file
22
pkgs/applications/misc/genact/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ fetchFromGitHub, lib, rustPlatform }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "genact";
|
||||||
|
version = "0.11.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "svenstaro";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1hc4jwk5rr1yw3pfvriash7b03j181k8c9y7m3sglkk8xnff219c";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0a5ic6c7fvmg2kh3qprzffnpw40cmrgbscrlhxxs3m7nxfjdh7bc";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A nonsense activity generator";
|
||||||
|
homepage = "https://github.com/svenstaro/genact";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -24314,6 +24314,8 @@ with pkgs;
|
||||||
geany = callPackage ../applications/editors/geany { };
|
geany = callPackage ../applications/editors/geany { };
|
||||||
geany-with-vte = callPackage ../applications/editors/geany/with-vte.nix { };
|
geany-with-vte = callPackage ../applications/editors/geany/with-vte.nix { };
|
||||||
|
|
||||||
|
genact = callPackage ../applications/misc/genact { };
|
||||||
|
|
||||||
genxword = callPackage ../applications/misc/genxword { };
|
genxword = callPackage ../applications/misc/genxword { };
|
||||||
|
|
||||||
geoipupdate = callPackage ../applications/misc/geoipupdate/default.nix { };
|
geoipupdate = callPackage ../applications/misc/geoipupdate/default.nix { };
|
||||||
|
|
Loading…
Reference in a new issue