mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
c8ce98d9ff
Project moved from github to gitlab
47 lines
996 B
Nix
47 lines
996 B
Nix
{ stdenv, fetchFromGitLab, makeWrapper, gcc, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "icmake-${version}";
|
|
version = "9.02.08";
|
|
|
|
src = fetchFromGitLab {
|
|
sha256 = "1pr5lagmdls3clzwa2xwcfa3k5750rf7i0j3zld0xirb41zx07q2";
|
|
rev = version;
|
|
repo = "icmake";
|
|
owner = "fbb-git";
|
|
};
|
|
|
|
|
|
setSourceRoot = ''
|
|
sourceRoot=$(echo */icmake)
|
|
'';
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ gcc ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs ./
|
|
substituteInPlace INSTALL.im --replace "usr/" ""
|
|
'';
|
|
|
|
buildPhase = ''
|
|
./icm_prepare $out
|
|
./icm_bootstrap x
|
|
'';
|
|
|
|
installPhase = ''
|
|
./icm_install all /
|
|
|
|
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;
|
|
};
|
|
}
|