Skip to content

Commit

Permalink
Merge pull request #68512 from nspin/pr/stdenv-spelling
Browse files Browse the repository at this point in the history
stdenv: fix misspellings of dontPatchELF
  • Loading branch information
peterhoeg committed Sep 12, 2019
2 parents c0a02c7 + d2333be commit 6759d15
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pkgs/applications/office/mendeley/default.nix
Expand Up @@ -130,7 +130,7 @@ stdenv.mkDerivation {
'';

dontStrip = true;
dontPatchElf = true;
dontPatchELF = true;

updateScript = import ./update.nix { inherit writeScript runtimeShell; };

Expand Down
2 changes: 1 addition & 1 deletion pkgs/games/neverball/default.nix
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/security/bitwarden/default.nix
Expand Up @@ -51,7 +51,7 @@ let

dontBuild = true;
dontConfigure = true;
dontPatchElf = true;
dontPatchELF = true;
dontWrapGApps = true;

buildInputs = [ libsecret ] ++ atomEnv.packages;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/security/keybase/gui.nix
Expand Up @@ -59,7 +59,7 @@ stdenv.mkDerivation rec {

dontBuild = true;
dontConfigure = true;
dontPatchElf = true;
dontPatchELF = true;

unpackPhase = ''
ar xf $src
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/security/metasploit/default.nix
Expand Up @@ -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}
Expand Down

0 comments on commit 6759d15

Please sign in to comment.