stdenv: fix misspellings of dontPatchELF

wip/yesman
Nick Spinale 5 years ago
parent 37e333af9a
commit d2333beb86
  1. 2
      pkgs/applications/office/mendeley/default.nix
  2. 2
      pkgs/games/neverball/default.nix
  3. 2
      pkgs/tools/security/bitwarden/default.nix
  4. 2
      pkgs/tools/security/keybase/gui.nix
  5. 2
      pkgs/tools/security/metasploit/default.nix

@ -130,7 +130,7 @@ stdenv.mkDerivation {
'';
dontStrip = true;
dontPatchElf = true;
dontPatchELF = true;
updateScript = import ./update.nix { inherit writeScript runtimeShell; };

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
buildInputs = [ libpng SDL2 libGL libjpeg SDL2_ttf libvorbis gettext physfs ];
dontPatchElf = true;
dontPatchELF = true;
patchPhase = ''
sed -i -e 's@\./data@'$out/share/neverball/data@ share/base_config.h Makefile

@ -51,7 +51,7 @@ let
dontBuild = true;
dontConfigure = true;
dontPatchElf = true;
dontPatchELF = true;
dontWrapGApps = true;
buildInputs = [ libsecret ] ++ atomEnv.packages;

@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
dontBuild = true;
dontConfigure = true;
dontPatchElf = true;
dontPatchELF = true;
unpackPhase = ''
ar xf $src

@ -28,7 +28,7 @@ in stdenv.mkDerivation rec {
buildInputs = [ makeWrapper ];
dontPatchelf = true; # stay away from exploit executables
dontPatchELF = true; # stay away from exploit executables
installPhase = ''
mkdir -p $out/{bin,share/msf}

Loading…
Cancel
Save