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