3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/build-managers/icmake/default.nix

40 lines
856 B
Nix
Raw Normal View History

2016-01-09 19:04:32 +00:00
{ stdenv, fetchFromGitHub, gcc5 }:
2016-01-09 19:04:32 +00:00
stdenv.mkDerivation rec {
name = "icmake-${version}";
2016-02-20 19:27:56 +00:00
version = "8.01.00";
src = fetchFromGitHub {
2016-02-20 19:27:56 +00:00
sha256 = "1vgjywbc4w1agkakfndr2qf0z0ncxisihdv8sz9ipry9f170np39";
rev = version;
repo = "icmake";
owner = "fbb-git";
};
sourceRoot = "icmake-${version}-src/icmake";
2016-01-09 19:04:32 +00:00
buildInputs = [ gcc5 ];
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 /
'';
meta = with stdenv.lib; {
description = "A program maintenance (make) utility using a C-like grammar";
homepage = https://fbb-git.github.io/icmake/;
license = licenses.gpl3;
maintainers = with maintainers; [ nckx pSub ];
platforms = platforms.linux;
};
2015-01-21 12:19:43 +00:00
}