nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 31 lines 738 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 rustPlatform, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "hullcaster"; 9 version = "0.1.2"; 10 11 src = fetchFromGitHub { 12 owner = "gilcu3"; 13 repo = "hullcaster"; 14 tag = "v${version}"; 15 hash = "sha256-TaELX/xMxm7OTmVnvkgEmdhnVrIlxSNqlE73+I5qxCc="; 16 }; 17 18 cargoHash = "sha256-jso9ofchUjpsck0qJN3rfFVM1Y6C8APmhwNzapU7Mug="; 19 20 # work around error: Could not create filepath: /homeless-shelter/.local/share 21 checkFlags = [ 22 "--skip gpodder::tests::gpodder" 23 ]; 24 25 meta = { 26 description = "Terminal-based podcast manager built in Rust"; 27 homepage = "https://github.com/gilcu3/hullcaster"; 28 license = lib.licenses.gpl3Plus; 29 maintainers = with lib.maintainers; [ kiara ]; 30 }; 31}