summary refs log tree commit diff
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-11-16 17:23:06 +0100
committerGitHub <noreply@github.com>2019-11-16 17:23:06 +0100
commit47c88f9ad1f7d11d183479d8c4ddb796cf047e44 (patch)
treec4fac557c822c45092b98b6d1842f2c6d26facc1
parent7a1b4d19648a2975244244a6983d7c60e245dc46 (diff)
downloadnixpkgs-47c88f9ad1f7d11d183479d8c4ddb796cf047e44.tar
nixpkgs-47c88f9ad1f7d11d183479d8c4ddb796cf047e44.tar.gz
nixpkgs-47c88f9ad1f7d11d183479d8c4ddb796cf047e44.tar.bz2
nixpkgs-47c88f9ad1f7d11d183479d8c4ddb796cf047e44.tar.lz
nixpkgs-47c88f9ad1f7d11d183479d8c4ddb796cf047e44.tar.xz
nixpkgs-47c88f9ad1f7d11d183479d8c4ddb796cf047e44.tar.zst
nixpkgs-47c88f9ad1f7d11d183479d8c4ddb796cf047e44.zip
mle: fix build
Tests failing on Hydra
-rw-r--r--pkgs/applications/editors/mle/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/editors/mle/default.nix b/pkgs/applications/editors/mle/default.nix
index f91d1d8fde6..e98759edd15 100644
--- a/pkgs/applications/editors/mle/default.nix
+++ b/pkgs/applications/editors/mle/default.nix
@@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
   postPatch = ''
     substituteInPlace Makefile --replace "-llua5.3" "-llua";
     substituteInPlace mle.h    --replace "<lua5.3/" "<";
+    patchShebangs tests/*
   '';
 
   buildInputs = [ termbox pcre uthash lua5_3 ];