Merge pull request #305210 from ryanccn/nrr

nrr: 0.8.0 -> 0.9.0

authored by Peder Bergebakken Sundt and committed by GitHub 8451d7f4 f2645327

+7 -4
+7 -4
pkgs/by-name/nr/nrr/package.nix
··· 5 5 , darwin 6 6 , pkg-config 7 7 , libiconv 8 + , nrxAlias ? true 8 9 }: 9 10 10 11 rustPlatform.buildRustPackage rec { 11 12 pname = "nrr"; 12 - version = "0.8.0"; 13 + version = "0.9.0"; 13 14 14 15 src = fetchFromGitHub { 15 16 owner = "ryanccn"; 16 17 repo = "nrr"; 17 18 rev = "v${version}"; 18 - hash = "sha256-4zQi7kQxcRXpYuSjolSZoDqX+CcGmq4dvChPlZZZVso="; 19 + hash = "sha256-94BeBCYCxZBoOp6xo4I/uxd6ULjIfmF4nw/vUWoaEpo="; 19 20 }; 20 21 21 - cargoHash = "sha256-XNnyEFEzKQ5N0xtskaUudcb2LtAiEsd6h3D/FdyIbHc="; 22 + cargoHash = "sha256-DTQTIAk914XC+LecQTXk1TdBc/5sMFG8KiD9lO5HLiM="; 22 23 23 24 buildInputs = lib.optionals stdenv.isDarwin [ 24 25 darwin.apple_sdk.frameworks.CoreFoundation ··· 31 32 pkg-config 32 33 ]; 33 34 35 + postInstall = lib.optionalString nrxAlias "ln -s $out/bin/nr{r,x}"; 36 + 34 37 meta = with lib; { 35 - description = "Minimal, blazing fast Node.js script runner"; 38 + description = "Minimal, blazing fast npm scripts runner"; 36 39 maintainers = with maintainers; [ ryanccn ]; 37 40 license = licenses.gpl3Only; 38 41 mainProgram = "nrr";