mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
darwin,
|
|
pkg-config,
|
|
libiconv,
|
|
enableLTO ? true,
|
|
nrxAlias ? true,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nrr";
|
|
version = "0.9.5";
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ryanccn";
|
|
repo = "nrr";
|
|
rev = "v${version}";
|
|
hash = "sha256-nzM16rZ3+JrmRmeE1dSZPj3P1KmN+Cv7QkkgOadeqx8=";
|
|
};
|
|
|
|
cargoHash = "sha256-F2JlUErplSRQwSAEavQPNDMcXYc2waeYwjGuzmZq8sc=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.CoreFoundation
|
|
darwin.apple_sdk.frameworks.Security
|
|
darwin.apple_sdk.frameworks.IOKit
|
|
libiconv
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
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";
|
|
};
|
|
}
|