3
0
Fork 0
forked from mirrors/nixpkgs
figsoda 2023-01-03 14:56:47 -05:00
parent a736c4a4fa
commit d376da366d

View file

@ -10,22 +10,25 @@
rustPlatform.buildRustPackage rec {
pname = "nurl";
version = "0.3.1";
version = "0.3.3";
src = fetchFromGitHub {
owner = "nix-community";
repo = "nurl";
rev = "v${version}";
hash = "sha256-fLa9gNdwBOSOMisU1UI8KAKGOkDN13LZsBpH+bObqUM=";
hash = "sha256-bZJlhGbRjhrLk8J0WJq3NCY71MZYsxy8f1ippguOsIM=";
};
cargoSha256 = "sha256-vyhsZYYSpR2qbwTXOw8e1DFRQ78RVHktK6zCbiXT7RI=";
cargoSha256 = "sha256-904IOaovvSOuMyXIxZjaG2iqUoz5qq3hftLGaiA8h0U=";
nativeBuildInputs = [
installShellFiles
makeWrapper
];
# tests require internet access
doCheck = false;
postInstall = ''
wrapProgram $out/bin/nurl \
--prefix PATH : ${lib.makeBinPath [ gitMinimal mercurial nix ]}