nixpkgs/pkgs/applications/misc/anup/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
829 B
Nix
Raw Normal View History

2021-11-05 02:21:10 +01:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, Security, sqlite, xdg-utils}:
2021-06-11 07:16:02 +02:00
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
2021-11-05 02:21:10 +01:00
] ++ lib.optionals stdenv.isDarwin [
Security
2021-06-11 07:16:02 +02:00
];
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"tui-utils-0.10.0" = "sha256-xazeXTGiMFZEcSFEF26te3LQ5oFFcskIiYkLzfsXf/A=";
};
};
2021-06-11 07:16:02 +02:00
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 ];
2024-02-11 03:19:15 +01:00
mainProgram = "anup";
2021-06-11 07:16:02 +02:00
};
}