summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-03-09 16:08:37 +0000
committerGitHub <noreply@github.com>2018-03-09 16:08:37 +0000
commit342743c90396bdc91ec6b88e2aa80e9eb7bc0118 (patch)
tree37bbe818f6862fe81bebcbcd5019403305e9036c /pkgs
parentd065a50336ae33d88c8db0f69f3df4ef6f648351 (diff)
parentf497a393280d93b1981476b339f4948243187966 (diff)
downloadnixlib-342743c90396bdc91ec6b88e2aa80e9eb7bc0118.tar
nixlib-342743c90396bdc91ec6b88e2aa80e9eb7bc0118.tar.gz
nixlib-342743c90396bdc91ec6b88e2aa80e9eb7bc0118.tar.bz2
nixlib-342743c90396bdc91ec6b88e2aa80e9eb7bc0118.tar.lz
nixlib-342743c90396bdc91ec6b88e2aa80e9eb7bc0118.tar.xz
nixlib-342743c90396bdc91ec6b88e2aa80e9eb7bc0118.tar.zst
nixlib-342743c90396bdc91ec6b88e2aa80e9eb7bc0118.zip
Merge pull request #36651 from pbogdan/yate-shebangs
yate: patch shebangs in configure
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/yate/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/misc/yate/default.nix b/pkgs/applications/misc/yate/default.nix
index bd891ff8493f..61c7b11f2084 100644
--- a/pkgs/applications/misc/yate/default.nix
+++ b/pkgs/applications/misc/yate/default.nix
@@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
   preConfigure =
     ''
       sed -i 's@,/dev/null@@' configure
+      patchShebangs configure
     '';
 
   # --unresolved-symbols=ignore-in-shared-libs makes ld no longer find --library=yate? Why?
@@ -35,7 +36,7 @@ stdenv.mkDerivation rec {
     # OpenH323 and PWlib (licensed under MPL).
     license = ["GPL" "MPL"];
     maintainers = [ lib.maintainers.marcweber ];
-    platforms = lib.platforms.linux;
+    platforms = [ "i686-linux" "x86_64-linux" ];
   };
 
 }