icmake: icmbuild uses tput
This commit is contained in:
parent
9cfeabb327
commit
458cce8d16
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, gcc }:
|
||||
{ stdenv, fetchFromGitHub, makeWrapper, gcc, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "icmake-${version}";
|
||||
|
@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
|
|||
sourceRoot=$(echo */icmake)
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [ gcc ];
|
||||
|
||||
preConfigure = ''
|
||||
|
@ -30,6 +31,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
installPhase = ''
|
||||
./icm_install all /
|
||||
|
||||
wrapProgram $out/bin/icmbuild \
|
||||
--prefix PATH : ${ncurses}/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue