buildNpmPackage: pass nativeBuildInputs to npmDeps (for patch phase)
This commit is contained in:
committed by
Masum Reza
parent
6ff6446488
commit
fff29a3e5f
@@ -63,6 +63,7 @@ lib.extendMkDerivation {
|
||||
patches
|
||||
postPatch
|
||||
patchFlags
|
||||
nativeBuildInputs
|
||||
;
|
||||
name = "${name}-npm-deps";
|
||||
hash = npmDepsHash;
|
||||
|
||||
@@ -152,6 +152,7 @@
|
||||
, hash ? ""
|
||||
, forceGitDeps ? false
|
||||
, forceEmptyCache ? false
|
||||
, nativeBuildInputs ? [ ]
|
||||
, ...
|
||||
} @ args:
|
||||
let
|
||||
@@ -169,7 +170,7 @@
|
||||
stdenvNoCC.mkDerivation (args // {
|
||||
inherit name;
|
||||
|
||||
nativeBuildInputs = [ prefetch-npm-deps ];
|
||||
nativeBuildInputs = nativeBuildInputs ++ [ prefetch-npm-deps ];
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
|
||||
Reference in New Issue
Block a user