Merge pull request #68512 from nspin/pr/stdenv-spelling
stdenv: fix misspellings of dontPatchELF
This commit is contained in:
commit
6759d15465
5 changed files with 5 additions and 5 deletions
|
@ -130,7 +130,7 @@ stdenv.mkDerivation {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
dontPatchElf = true;
|
dontPatchELF = true;
|
||||||
|
|
||||||
updateScript = import ./update.nix { inherit writeScript runtimeShell; };
|
updateScript = import ./update.nix { inherit writeScript runtimeShell; };
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ libpng SDL2 libGL libjpeg SDL2_ttf libvorbis gettext physfs ];
|
buildInputs = [ libpng SDL2 libGL libjpeg SDL2_ttf libvorbis gettext physfs ];
|
||||||
|
|
||||||
dontPatchElf = true;
|
dontPatchELF = true;
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
sed -i -e 's@\./data@'$out/share/neverball/data@ share/base_config.h Makefile
|
sed -i -e 's@\./data@'$out/share/neverball/data@ share/base_config.h Makefile
|
||||||
|
|
|
@ -51,7 +51,7 @@ let
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
dontPatchElf = true;
|
dontPatchELF = true;
|
||||||
dontWrapGApps = true;
|
dontWrapGApps = true;
|
||||||
|
|
||||||
buildInputs = [ libsecret ] ++ atomEnv.packages;
|
buildInputs = [ libsecret ] ++ atomEnv.packages;
|
||||||
|
|
|
@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
dontPatchElf = true;
|
dontPatchELF = true;
|
||||||
|
|
||||||
unpackPhase = ''
|
unpackPhase = ''
|
||||||
ar xf $src
|
ar xf $src
|
||||||
|
|
|
@ -28,7 +28,7 @@ in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ makeWrapper ];
|
buildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
dontPatchelf = true; # stay away from exploit executables
|
dontPatchELF = true; # stay away from exploit executables
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/{bin,share/msf}
|
mkdir -p $out/{bin,share/msf}
|
||||||
|
|
Loading…
Reference in a new issue