Files

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

45 lines
845 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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
];
};
}