bundlerApp: accept nativeBuildInputs
https://github.com/nixos/nixpkgs/commit/69dcb1a2c0c5596fbbbe7fa50d4f8277c6f1ea6a added support for buildInputs with the intention of adding makeWrapper but makeWrapper should be in nativeBuildInputs
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
, meta ? {}
|
||||
, groups ? null
|
||||
, ignoreCollisions ? false
|
||||
, nativeBuildInputs ? []
|
||||
, buildInputs ? []
|
||||
, extraConfigPaths ? []
|
||||
, ...
|
||||
@@ -102,7 +103,7 @@ let
|
||||
|
||||
|
||||
basicEnvArgs = {
|
||||
inherit buildInputs ignoreCollisions;
|
||||
inherit nativeBuildInputs buildInputs ignoreCollisions;
|
||||
|
||||
name = name';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user