1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 00:54:46 +00:00
nixpkgs/pkgs/development/tools/build-managers/icmake/default.nix

47 lines
986 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitLab, makeWrapper, gcc, ncurses }:
2016-01-09 19:04:32 +00:00
stdenv.mkDerivation rec {
pname = "icmake";
2019-12-23 16:46:51 +00:00
version = "9.02.09";
src = fetchFromGitLab {
2019-12-23 16:46:51 +00:00
sha256 = "0f4vyqgjribwa60j3a1c2xv69zllc7rfhaafq0jj1mdy8hdzvxpd";
rev = version;
repo = "icmake";
owner = "fbb-git";
};
setSourceRoot = ''
sourceRoot=$(echo */icmake)
'';
2018-03-06 19:20:37 +00:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ gcc ];
2016-01-09 19:04:32 +00:00
preConfigure = ''
patchShebangs ./
substituteInPlace INSTALL.im --replace "usr/" ""
'';
buildPhase = ''
2016-01-09 19:04:32 +00:00
./icm_prepare $out
./icm_bootstrap x
'';
installPhase = ''
./icm_install all /
2018-03-06 19:20:37 +00:00
wrapProgram $out/bin/icmbuild \
--prefix PATH : ${ncurses}/bin
'';
meta = with stdenv.lib; {
description = "A program maintenance (make) utility using a C-like grammar";
homepage = https://fbb-git.gitlab.io/icmake/;
license = licenses.gpl3;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
2015-01-21 12:19:43 +00:00
}