diff options
Diffstat (limited to 'pkgs/by-name')
-rw-r--r-- | pkgs/by-name/pu/puppet-bolt/package.nix | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/by-name/pu/puppet-bolt/package.nix b/pkgs/by-name/pu/puppet-bolt/package.nix index 7340ed9eb751..a93775269855 100644 --- a/pkgs/by-name/pu/puppet-bolt/package.nix +++ b/pkgs/by-name/pu/puppet-bolt/package.nix @@ -1,5 +1,6 @@ { bundlerApp, + defaultGemConfig, bundlerUpdateScript, lib, makeWrapper, @@ -14,10 +15,12 @@ exes = [ "bolt" ]; nativeBuildInputs = [ makeWrapper ]; - gemConfig.bolt = attrs: { - # scripts in libexec will be executed by remote host, - # so shebangs should remain unchanged - dontPatchShebangs = true; + gemConfig = defaultGemConfig // { + bolt = attrs: { + # scripts in libexec will be executed by remote host, + # so shebangs should remain unchanged + dontPatchShebangs = true; + }; }; postBuild = '' |