about summary refs log tree commit diff
path: root/pkgs/applications/misc/genact
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-08-25 22:29:33 -0400
committerfigsoda <figsoda@pm.me>2021-08-25 22:29:33 -0400
commit448983cc4d2a6a720d11b60775093ba3d5b7af0c (patch)
tree94fdbb92e83012acc79a080ae5eb4f90d9f5052f /pkgs/applications/misc/genact
parentee006e93dfcbd090e62472103adc52672b7316d0 (diff)
genact: init at 0.11.0
Diffstat (limited to 'pkgs/applications/misc/genact')
-rw-r--r--pkgs/applications/misc/genact/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/misc/genact/default.nix b/pkgs/applications/misc/genact/default.nix
new file mode 100644
index 0000000000000..44e4bd2a0b389
--- /dev/null
+++ b/pkgs/applications/misc/genact/default.nix
@@ -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 ];
+  };
+}