Add colormake

This commit is contained in:
Rob Vermaas 2013-07-25 11:35:51 +02:00
parent 2accfa17d3
commit 9afc8bb1e0
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{stdenv, fetchgit, perl}:
stdenv.mkDerivation rec {
name = "colormake-${version}";
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
'';
}

View file

@ -615,6 +615,8 @@ let
convertlit = callPackage ../tools/text/convertlit { };
colormake = callPackage ../development/tools/build-managers/colormake { };
cowsay = callPackage ../tools/misc/cowsay { };
cuetools = callPackage ../tools/cd-dvd/cuetools { };