about summary refs log tree commit diff
path: root/pkgs/applications/misc/sigi/default.nix
diff options
context:
space:
mode:
author♪ hiljusti 🎮 <hiljusti@pm.me>2021-12-31 23:38:29 -0800
committer♪ hiljusti 🎮 <hiljusti@pm.me>2022-01-03 07:31:44 -0800
commitbea08efd6853a54b31152b52cbc84ea824fdf1f0 (patch)
treee8a6aeb390b0a221c6e2729743ae896437769bd3 /pkgs/applications/misc/sigi/default.nix
parentfff02c347c070f188677b532c774fcec29dbd478 (diff)
sigi: init at 2.1.1
Diffstat (limited to 'pkgs/applications/misc/sigi/default.nix')
-rw-r--r--pkgs/applications/misc/sigi/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/misc/sigi/default.nix b/pkgs/applications/misc/sigi/default.nix
new file mode 100644
index 0000000000000..2d64883d00837
--- /dev/null
+++ b/pkgs/applications/misc/sigi/default.nix
@@ -0,0 +1,24 @@
+{ lib, rustPlatform, fetchFromGitHub, testVersion, sigi }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "sigi";
+  version = "2.1.1";
+
+  src = fetchFromGitHub {
+    owner = "hiljusti";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-y0m1AQE5qoUfPZjJfo7w5h+zZ1pbz8FkLFDM13MTWvQ=";
+  };
+
+  cargoSha256 = "sha256-NTjL57Y1Uzk5F34BW3lB3xUpD60Opt0fGWuXHQU5L3g=";
+
+  passthru.tests.version = testVersion { package = sigi; };
+
+  meta = with lib; {
+    description = "CLI tool for organization and planning";
+    homepage = "https://github.com/hiljusti/sigi";
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ hiljusti ];
+  };
+}