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
45 lines
845 B
Nix
45 lines
845 B
Nix
{
|
|
lib,
|
|
fetchCrate,
|
|
rustPlatform,
|
|
pkg-config,
|
|
openssl,
|
|
nix-update-script,
|
|
testers,
|
|
talecast,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "talecast";
|
|
version = "0.1.39";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-RwB+X+i3CEcTyKac81he9/cT2aQ4M7AqgqSDBEvhFJU=";
|
|
};
|
|
|
|
cargoHash = "sha256-mRoFg1UUPCKWiPxZg+8o2+2K6R+88RI/pdO8OLM4jFk=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion { package = talecast; };
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple CLI podcatcher";
|
|
homepage = "https://github.com/TBS1996/TaleCast";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "talecast";
|
|
maintainers = with lib.maintainers; [
|
|
confusedalex
|
|
getchoo
|
|
];
|
|
};
|
|
}
|