about summary refs log tree commit diff
path: root/pkgs/applications/networking/remote
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-11-28 14:22:10 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2018-11-28 20:14:45 -0600
commitc0a804c747c6909c036da76472393b2fbd6413b9 (patch)
treea2166e049fa5523ca24b9a18752fe3f6c3d47fd6 /pkgs/applications/networking/remote
parent38f1b48232347d1a6e21a2c603c516b9a7128502 (diff)
downloadnixlib-c0a804c747c6909c036da76472393b2fbd6413b9.tar
nixlib-c0a804c747c6909c036da76472393b2fbd6413b9.tar.gz
nixlib-c0a804c747c6909c036da76472393b2fbd6413b9.tar.bz2
nixlib-c0a804c747c6909c036da76472393b2fbd6413b9.tar.lz
nixlib-c0a804c747c6909c036da76472393b2fbd6413b9.tar.xz
nixlib-c0a804c747c6909c036da76472393b2fbd6413b9.tar.zst
nixlib-c0a804c747c6909c036da76472393b2fbd6413b9.zip
treewide: add dontUseImakeConfigure where needed
We need to set dontUseImakeConfigure in a few places to prevent imake
from overriding the default configure phase. This packages all have a
configure script that needs to get run:

- Xaw3d
- R
- tkgate
- ssvnc
Diffstat (limited to 'pkgs/applications/networking/remote')
-rw-r--r--pkgs/applications/networking/remote/ssvnc/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/networking/remote/ssvnc/default.nix b/pkgs/applications/networking/remote/ssvnc/default.nix
index f20bb740615c..99835627f879 100644
--- a/pkgs/applications/networking/remote/ssvnc/default.nix
+++ b/pkgs/applications/networking/remote/ssvnc/default.nix
@@ -12,7 +12,9 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ imake zlib jdk libX11 libXt libXmu libXaw libXext libXpm openjpeg openssl ];
 
-  configurePhase = "makeFlags=PREFIX=$out";
+  dontUseImakeConfigure = true;
+
+  makeFlags = "PREFIX=$(out)";
 
   hardeningDisable = [ "format" ];