Files
nur/pkgs/linux/ani-cli-rs.nix
T
wymiller cb05f0550b
Publish packages to Attic / publish (push) Successful in 9m46s
Merge branch 'master' of ssh://scm.wyattjmiller.com:222/wymiller/nur
2026-08-26 19:12:35 -04:00

28 lines
834 B
Nix

{ pkgs }:
let
pname = "ani-cli-rs";
version = "0.9.4";
src = pkgs.fetchFromGitHub {
owner = "vorlie";
repo = "ani-cli-rs";
rev = "${version}";
sha256 = "sha256-19U/p583B5d/Kd0O1raYhREz6zYMeudyTH7dh9bi/jU=";
};
in pkgs.rustPlatform.buildRustPackage {
inherit pname version src;
cargoLock = { lockFile = "${src}/Cargo.lock"; };
# tests make this package fail to build, this line skips them
doCheck = false;
meta = {
description = "A cross-platform Rust port of ani-cli with two independent Anikoto catalogs and native MegaPlay/KotoCDN playback";
mainProgram = "ani-cli-rs";
homepage = "https://github.com/vorlie/ani-cli-rs";
maintainers = [ "wymillerlinux" ];
platforms = [ "x86_64-linux" ];
changelog = "https://github.com/vorlie/ani-cli-rs/releases/tag/${version}";
};
}