mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
add icmake, a program maintenance utility
This commit is contained in:
parent
c56bbf6011
commit
38022c9938
2 changed files with 30 additions and 0 deletions
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 { };
|
||||
|
||||
icmake = callPackage ../development/tools/build-managers/icmake { };
|
||||
|
||||
iconnamingutils = callPackage ../development/tools/misc/icon-naming-utils {
|
||||
inherit (perlPackages) XMLSimple;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue