Files
nixpkgs/pkgs/by-name/hu/hullcaster/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

46 lines
886 B
Nix

{
lib,
alsa-lib,
dbus,
fetchFromGitHub,
openssl,
pkg-config,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "hullcaster";
version = "0.2.0";
src = fetchFromGitHub {
owner = "gilcu3";
repo = "hullcaster";
tag = "v${version}";
hash = "sha256-BR3klwy6vm6nJ38sgS/PGPQ19n0GJq6eQE97lHmg+kQ=";
};
cargoHash = "sha256-TZmRObtkwrHRy/I6hhacbHUWiajKDLnHafLWIwVM15o=";
buildInputs = [
alsa-lib
dbus
openssl
];
nativeBuildInputs = [
pkg-config
];
# 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 ];
};
}