Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
843 B
Nix
36 lines
843 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
enableLTO ? true,
|
|
nrxAlias ? true,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nrr";
|
|
version = "0.10.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ryanccn";
|
|
repo = "nrr";
|
|
rev = "v${version}";
|
|
hash = "sha256-RBKFDm6MpK2lDCUvbX0EFEuOASKtHM+5QknWM0A6AKE=";
|
|
};
|
|
|
|
cargoHash = "sha256-DiapeSFfsmox+Utx9uW/8/veEQcnWmoaETLNyffpv64=";
|
|
|
|
env = lib.optionalAttrs enableLTO {
|
|
CARGO_PROFILE_RELEASE_LTO = "fat";
|
|
CARGO_PROFILE_RELEASE_CODEGEN_UNITS = "1";
|
|
};
|
|
|
|
postInstall = lib.optionalString nrxAlias "ln -s $out/bin/nr{r,x}";
|
|
|
|
meta = with lib; {
|
|
description = "Minimal, blazing fast npm scripts runner";
|
|
homepage = "https://github.com/ryanccn/nrr";
|
|
maintainers = with maintainers; [ ryanccn ];
|
|
license = licenses.gpl3Only;
|
|
mainProgram = "nrr";
|
|
};
|
|
}
|