nixpkgs/pkgs/by-name/hu/hullcaster/package.nix

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

32 lines
733 B
Nix
Raw Permalink Normal View History

2024-11-09 15:37:14 -07:00
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "hullcaster";
version = "v0.1.2";
src = fetchFromGitHub {
owner = "gilcu3";
repo = "hullcaster";
rev = version;
hash = "sha256-TaELX/xMxm7OTmVnvkgEmdhnVrIlxSNqlE73+I5qxCc=";
};
cargoHash = "sha256-FeIZu/9yEk8U4a1AhqHyJBhpTP453km33FemwfhZckc=";
# work around error: Could not create filepath: /homeless-shelter/.local/share
checkFlags = [
"--skip gpodder::tests::gpodder"
];
meta = {
description = "Terminal-based podcast manager built in Rust";
homepage = "https://github.com/gilcu3/hullcaster";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ kiara ];
};
}