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
847 B
Nix
36 lines
847 B
Nix
{
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "node-pre-gyp";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mapbox";
|
|
repo = "node-pre-gyp";
|
|
tag = "v${version}";
|
|
hash = "sha256-9MADe6oY28MBAdQsu/ddVveZYwD4xeVNKUffhcvK+Q0=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-yNu66HlkOVsYv60saTf7M4QuN9B2euYFu5WB7UAwhUw=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
postInstall = ''
|
|
mv $out/bin/@mapbox/node-pre-gyp $out/bin
|
|
rmdir $out/bin/@mapbox
|
|
'';
|
|
|
|
meta = {
|
|
changelog = "https://github.com/mapbox/node-pre-gyp/blob/${src.rev}/CHANGELOG.md";
|
|
description = "Node.js tool for easy binary deployment of C++ addons";
|
|
homepage = "https://github.com/mapbox/node-pre-gyp";
|
|
license = lib.licenses.bsd3;
|
|
mainProgram = "node-pre-gyp";
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|