summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-10-05 11:22:48 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-10-05 11:23:34 +0200
commit32b31398eb562152a11d1be992c5ea6e110013f5 (patch)
treef6e77a79ceb20eb3e05d1c372b9671fdfa1cc193 /pkgs/tools
parent328eafa8857c0b4de84581935cdcb323259f2e0f (diff)
downloadnixpkgs-32b31398eb562152a11d1be992c5ea6e110013f5.tar
nixpkgs-32b31398eb562152a11d1be992c5ea6e110013f5.tar.gz
nixpkgs-32b31398eb562152a11d1be992c5ea6e110013f5.tar.bz2
nixpkgs-32b31398eb562152a11d1be992c5ea6e110013f5.tar.lz
nixpkgs-32b31398eb562152a11d1be992c5ea6e110013f5.tar.xz
nixpkgs-32b31398eb562152a11d1be992c5ea6e110013f5.tar.zst
nixpkgs-32b31398eb562152a11d1be992c5ea6e110013f5.zip
xorg.libXt: re-split into multiple outputs
Fixed all 'libXt}' references, too.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/plan9port/builder.sh4
-rw-r--r--pkgs/tools/system/plan9port/default.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/system/plan9port/builder.sh b/pkgs/tools/system/plan9port/builder.sh
index 2434889581e..98b8ac7418b 100644
--- a/pkgs/tools/system/plan9port/builder.sh
+++ b/pkgs/tools/system/plan9port/builder.sh
@@ -5,8 +5,8 @@ export PLAN9_TARGET=$PLAN9
 
 configurePhase()
 {
-    echo CFLAGS=\"-I${fontconfig}/include -I${libXt}/include\" > LOCAL.config
-    echo X11=\"${libXt}/include\" >> LOCAL.config
+    echo CFLAGS=\"-I${fontconfig}/include -I${libXt_dev}/include\" > LOCAL.config
+    echo X11=\"${libXt_dev}/include\" >> LOCAL.config
 
     for f in `grep -l -r /usr/local/plan9`; do
         sed "s,/usr/local/plan9,${PLAN9},g" -i $f
diff --git a/pkgs/tools/system/plan9port/default.nix b/pkgs/tools/system/plan9port/default.nix
index 3a78cb2baf6..9833d81be1a 100644
--- a/pkgs/tools/system/plan9port/default.nix
+++ b/pkgs/tools/system/plan9port/default.nix
@@ -47,6 +47,6 @@ stdenv.mkDerivation rec {
     platforms = platforms.unix;
   };
 
-  inherit libXt;
+  libXt_dev = libXt.dev;
   inherit fontconfig;
 }