mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
add icmake, a program maintenance utility
This commit is contained in:
parent
c56bbf6011
commit
38022c9938
28
pkgs/development/tools/build-managers/icmake/default.nix
Normal file
28
pkgs/development/tools/build-managers/icmake/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "icmake-${version}";
|
||||||
|
version = "7.21.01";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/icmake/icmake_${version}.orig.tar.gz";
|
||||||
|
sha256 = "0jx547bb0h1z5f3v9kvjiq5bgarbrcs1h47y1nnwdkg0q1mqma1h";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
patchShebangs ./
|
||||||
|
sed -i "s;usr/;;g" INSTALL.im
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildPhase = "./icm_bootstrap $out";
|
||||||
|
|
||||||
|
installPhase = "./icm_install all /";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A program maintenance (make) utility using a C-like grammar";
|
||||||
|
homepage = http://icmake.sourceforge.net/;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ pSub ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -4554,6 +4554,8 @@ let
|
|||||||
|
|
||||||
ibus = callPackage ../development/libraries/ibus { };
|
ibus = callPackage ../development/libraries/ibus { };
|
||||||
|
|
||||||
|
icmake = callPackage ../development/tools/build-managers/icmake { };
|
||||||
|
|
||||||
iconnamingutils = callPackage ../development/tools/misc/icon-naming-utils {
|
iconnamingutils = callPackage ../development/tools/misc/icon-naming-utils {
|
||||||
inherit (perlPackages) XMLSimple;
|
inherit (perlPackages) XMLSimple;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user