summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-03-16 08:39:37 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-03-16 08:39:37 +0100
commitc643ccaa8c91f78b8c89eb87589886b8906d5b38 (patch)
tree22e57f627266ba2940c4bbee62da17846472659a /pkgs/tools/misc
parent55b6c1792619085dd8aacf46b94e2f33303dd58e (diff)
parentda972b6cc40b4be7492df1661a522e12bf747807 (diff)
downloadnixlib-c643ccaa8c91f78b8c89eb87589886b8906d5b38.tar
nixlib-c643ccaa8c91f78b8c89eb87589886b8906d5b38.tar.gz
nixlib-c643ccaa8c91f78b8c89eb87589886b8906d5b38.tar.bz2
nixlib-c643ccaa8c91f78b8c89eb87589886b8906d5b38.tar.lz
nixlib-c643ccaa8c91f78b8c89eb87589886b8906d5b38.tar.xz
nixlib-c643ccaa8c91f78b8c89eb87589886b8906d5b38.tar.zst
nixlib-c643ccaa8c91f78b8c89eb87589886b8906d5b38.zip
Merge #13950: move ncurses utilities to $out
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/entr/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/entr/default.nix b/pkgs/tools/misc/entr/default.nix
index a99e28c6f817..69ddbd6dbfe7 100644
--- a/pkgs/tools/misc/entr/default.nix
+++ b/pkgs/tools/misc/entr/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   postPatch = ''
     substituteInPlace Makefile.bsd --replace /bin/echo echo
     substituteInPlace entr.c --replace /bin/cat ${coreutils}/bin/cat
-    substituteInPlace entr.c --replace /usr/bin/clear ${ncurses.dev}/bin/clear
+    substituteInPlace entr.c --replace /usr/bin/clear ${ncurses.out}/bin/clear
     substituteInPlace entr.1 --replace /bin/cat cat
     substituteInPlace entr.1 --replace /usr/bin/clear clear
   '';