about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-14 19:55:40 +0200
committerGitHub <noreply@github.com>2021-06-14 19:55:40 +0200
commit6aaabb89e2692682b05019aeaa05d04ed8ad293c (patch)
tree4697c95f94d9ec43a6400af543cfed10cfc83b66 /pkgs/applications/misc
parenta7ff3fd40e1791d22363775948619e706e1ec665 (diff)
parent5de8597c9bb337b4fb24dd7aaed59a3f230333d3 (diff)
Merge pull request #126100 from natto1784/anup
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 ];
+  };
+}