ncurses: split into multiple outputs

Some programs (e.g. tput) might better be moved somewhere else than
$dev/bin, but that can be improved later if need be.
This commit is contained in:
Vladimír Čunát
2015-10-13 20:18:44 +02:00
parent 9a1aa51fed
commit 91407a8bdf
39 changed files with 75 additions and 70 deletions
+1 -1
View File
@@ -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}/bin/clear
substituteInPlace entr.c --replace /usr/bin/clear ${ncurses.dev}/bin/clear
substituteInPlace entr.1 --replace /bin/cat cat
substituteInPlace entr.1 --replace /usr/bin/clear clear
'';