ani-cli: rename to ani-cli-git

This commit is contained in:
raf 2025-04-19 18:47:49 +03:00
commit da9443728f
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF

View file

@ -0,0 +1,24 @@
{
pins,
lib,
fetchFromGitHub,
ani-cli,
...
}:
ani-cli.overrideAttrs (let
pin = pins.ani-cli;
in {
pname = "ani-cli";
inherit (pin) version;
src = fetchFromGitHub {
inherit (pin.repository) owner repo;
sha256 = pin.hash;
rev = pin.revision;
};
meta = {
description = "An auto-upgrading version of ani-cli to ensure we are always up to date with scrapers";
maintainers = with lib.maintainers; [NotAShelf];
};
})