nixpkgs/pkgs/development/tools/build-managers/colormake/default.nix

26 lines
601 B
Nix
Raw Normal View History

2013-07-25 09:35:51 +00:00
{stdenv, fetchgit, perl}:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "colormake";
2013-07-25 09:35:51 +00:00
version = "2.1.0";
buildInputs = [perl];
src = fetchgit {
url = https://github.com/pagekite/Colormake.git;
rev = "66544f40d";
sha256 = "8e714c5540305d169989d9387dbac47b8b9fb2cfb424af7bcd412bfe684dc6d7";
};
installPhase = ''
mkdir -p $out/bin
cp -fa colormake.pl colormake colormake-short clmake clmake-short $out/bin
'';
2013-07-25 09:38:13 +00:00
meta = {
description = "Simple wrapper around make to colorize the output";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
2013-07-25 09:38:13 +00:00
};
2013-07-25 09:35:51 +00:00
}