anup: init at 0.4.0

This commit is contained in:
natto1784 2021-06-11 10:46:02 +05:30
parent 4a2cbcfbb4
commit 9acd608f77
No known key found for this signature in database
GPG key ID: 95949BD4B853F559
2 changed files with 29 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -22610,6 +22610,8 @@ in
antiword = callPackage ../applications/office/antiword {};
anup = callPackage ../applications/misc/anup {};
ao = libfive;
apache-directory-studio = callPackage ../applications/networking/apache-directory-studio {};