about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authornatto1784 <singh.amneesh1784@gmail.com>2021-06-11 10:46:02 +0530
committernatto1784 <singh.amneesh1784@gmail.com>2021-06-11 10:46:02 +0530
commit9acd608f7748f475cad65d7543eb775633a8f7f8 (patch)
tree56c0a3e98ae8eeb209a112ea582d9ef8931b3195 /pkgs/applications/misc
parent4a2cbcfbb4e9563b81af2637ddaf4ff8cce97930 (diff)
anup: init at 0.4.0
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/anup/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/misc/anup/default.nix b/pkgs/applications/misc/anup/default.nix
new file mode 100644
index 0000000000000..9c99c84eabee5
--- /dev/null
+++ b/pkgs/applications/misc/anup/default.nix
@@ -0,0 +1,27 @@
+{ lib, rustPlatform, fetchFromGitHub, sqlite, xdg-utils}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "anup";
+  version = "0.4.0";
+
+  src = fetchFromGitHub {
+    owner = "Acizza";
+    repo = "anup";
+    rev = version;
+    sha256 = "sha256-4pXF4p4K8+YihVB9NdgT6bOidmQEgWXUbcbvgXJ0IDA=";
+  };
+
+  buildInputs = [
+    sqlite
+    xdg-utils
+  ];
+
+  cargoSha256 = "sha256-1TA2HDHKA3twFtlAWaC2zcRzS8TJwcbBt1OTQ3hC3qM=";
+
+  meta = with lib; {
+    homepage = "https://github.com/Acizza/anup";
+    description = "An anime tracker for AniList featuring a TUI";
+    license = licenses.agpl3Only;
+    maintainers = with maintainers; [ natto1784 ];
+  };
+}