Fix netlify-cli (#370586)

This commit is contained in:
Robert Hensing
2025-01-03 21:46:12 +01:00
committed by GitHub
2 changed files with 10 additions and 5 deletions
+7 -4
View File
@@ -1,11 +1,12 @@
{
callPackage,
vips,
pkg-config,
lib,
buildNpmPackage,
callPackage,
fetchFromGitHub,
lib,
nix-update-script,
nodejs,
pkg-config,
vips,
}:
buildNpmPackage rec {
@@ -21,6 +22,8 @@ buildNpmPackage rec {
npmDepsHash = "sha256-pJaNdR9jyFSdfE+yLnQn9/Gbq2CbH6y3aEVbpg3Ft/o=";
inherit nodejs;
buildInputs = [ vips ];
nativeBuildInputs = [ pkg-config ];
+3 -1
View File
@@ -4401,7 +4401,9 @@ with pkgs;
};
});
netlify-cli = callPackage ../development/web/netlify-cli { };
netlify-cli = callPackage ../development/web/netlify-cli {
nodejs = nodejs_20;
};
netpbm = callPackage ../tools/graphics/netpbm { };