mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
hullcaster: init at 0.1.2
This commit is contained in:
parent
bed5c8a503
commit
837d651b6a
31
pkgs/by-name/hu/hullcaster/package.nix
Normal file
31
pkgs/by-name/hu/hullcaster/package.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user