Unverified Commit 5dd6467e authored by Karel Kočí's avatar Karel Kočí
Browse files

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.
parent e9eca9b6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ 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 = [