Merge pull request #126100 from natto1784/anup

This commit is contained in:
Sandro 2021-06-14 19:55:40 +02:00 committed by GitHub
commit 6aaabb89e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 0 deletions

View file

@ -7211,6 +7211,12 @@
githubId = 818502;
name = "Nathan Yong";
};
natto1784 = {
email = "natto@weirdnatto.in";
github = "natto1784";
githubId = 56316606;
name = "Amneesh Singh";
};
nbren12 = {
email = "nbren12@gmail.com";
github = "nbren12";

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

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