forked from mirrors/nixpkgs
ruby bundlerApp: Allow passing gemConfig through to bundlerEnv
This commit is contained in:
parent
3458776bb1
commit
69017e46ae
|
@ -26,12 +26,13 @@
|
|||
, allowSubstitutes ? false
|
||||
, meta ? {}
|
||||
, postBuild ? ""
|
||||
, gemConfig ? null
|
||||
}@args:
|
||||
|
||||
let
|
||||
basicEnv = (callPackage ../bundled-common {}) args;
|
||||
|
||||
cmdArgs = removeAttrs args [ "pname" "postBuild" ]
|
||||
cmdArgs = removeAttrs args [ "pname" "postBuild" "gemConfig" ]
|
||||
// { inherit preferLocalBuild allowSubstitutes; }; # pass the defaults
|
||||
in
|
||||
runCommand basicEnv.name cmdArgs ''
|
||||
|
|
Loading…
Reference in a new issue