gzip: use makeShellWrapper instead of makeWrapper
makeWrapper is in default makeShellWrapper but sometimes it is beneficial to switch it in overlay to makeBinaryWrapper, but gzip is injecting shell expansion that doesn't work binary wrapper. Thus this takes shell wrapper explicitly as a dependency now.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, makeWrapper
|
||||
, makeShellWrapper
|
||||
, updateAutotoolsGnuConfigScriptsHook
|
||||
, runtimeShellPackage
|
||||
}:
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook makeWrapper ];
|
||||
nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook makeShellWrapper ];
|
||||
buildInputs = [ runtimeShellPackage ];
|
||||
|
||||
makeFlags = [
|
||||
|
||||
Reference in New Issue
Block a user