about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-02-01 11:18:39 -0600
committerThomas Tuegel <ttuegel@gmail.com>2016-03-08 11:35:24 -0600
commitda972b6cc40b4be7492df1661a522e12bf747807 (patch)
tree614d4a8ebab431784816f13ee042041482f1cbf8 /pkgs/applications
parent3ef7671cea0ed5a4819e1cd83c03f4ee1f85eb96 (diff)
downloadnixlib-da972b6cc40b4be7492df1661a522e12bf747807.tar
nixlib-da972b6cc40b4be7492df1661a522e12bf747807.tar.gz
nixlib-da972b6cc40b4be7492df1661a522e12bf747807.tar.bz2
nixlib-da972b6cc40b4be7492df1661a522e12bf747807.tar.lz
nixlib-da972b6cc40b4be7492df1661a522e12bf747807.tar.xz
nixlib-da972b6cc40b4be7492df1661a522e12bf747807.tar.zst
nixlib-da972b6cc40b4be7492df1661a522e12bf747807.zip
ncurses: move runtime utilities to $out
All the programs provided by ncurses were being installed to the $dev
output, but several of them are intended for runtime use, e.g. to
operate on the running terminal. These user-facing programs are moved to
the $bin output.

Several packages referred to "${ncurses}/bin" or "${ncurses.dev}/bin" at
runtime; these paths are also updated to refer to "${ncurses.bin}/bin".
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/girara/default.nix2
-rw-r--r--pkgs/applications/misc/zathura/core/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/girara/default.nix b/pkgs/applications/misc/girara/default.nix
index 6598c13253bb..cfa38a118614 100644
--- a/pkgs/applications/misc/girara/default.nix
+++ b/pkgs/applications/misc/girara/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ pkgconfig gtk gettext ];
 
   makeFlags = [ "PREFIX=$(out)" ]
-    ++ optional withBuildColors "TPUT=${ncurses.dev}/bin/tput"
+    ++ optional withBuildColors "TPUT=${ncurses.out}/bin/tput"
     ++ optional (!withBuildColors) "TPUT_AVAILABLE=0"
     ;
 
diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix
index f09c971351f3..62e7ee60cb3e 100644
--- a/pkgs/applications/misc/zathura/core/default.nix
+++ b/pkgs/applications/misc/zathura/core/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     "PREFIX=$(out)"
     "RSTTOMAN=${docutils}/bin/rst2man.py"
     "VERBOSE=1"
-    "TPUT=${ncurses.dev}/bin/tput"
+    "TPUT=${ncurses.out}/bin/tput"
   ];
 
   postInstall = ''