nrr: 0.8.0 -> 0.9.0

This commit is contained in:
Ryan Cao 2024-04-19 10:52:06 +08:00
parent 3d06f73179
commit 922ff9ac83
No known key found for this signature in database
1 changed files with 7 additions and 4 deletions

View File

@ -5,20 +5,21 @@
, darwin
, pkg-config
, libiconv
, nrxAlias ? true
}:
rustPlatform.buildRustPackage rec {
pname = "nrr";
version = "0.8.0";
version = "0.9.0";
src = fetchFromGitHub {
owner = "ryanccn";
repo = "nrr";
rev = "v${version}";
hash = "sha256-4zQi7kQxcRXpYuSjolSZoDqX+CcGmq4dvChPlZZZVso=";
hash = "sha256-94BeBCYCxZBoOp6xo4I/uxd6ULjIfmF4nw/vUWoaEpo=";
};
cargoHash = "sha256-XNnyEFEzKQ5N0xtskaUudcb2LtAiEsd6h3D/FdyIbHc=";
cargoHash = "sha256-DTQTIAk914XC+LecQTXk1TdBc/5sMFG8KiD9lO5HLiM=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
@ -31,8 +32,10 @@ rustPlatform.buildRustPackage rec {
pkg-config
];
postInstall = lib.optionalString nrxAlias "ln -s $out/bin/nr{r,x}";
meta = with lib; {
description = "Minimal, blazing fast Node.js script runner";
description = "Minimal, blazing fast npm scripts runner";
maintainers = with maintainers; [ ryanccn ];
license = licenses.gpl3Only;
mainProgram = "nrr";