Merge remote-tracking branch 'master' into stdenv-updates.

Conflicts:
	pkgs/applications/version-management/git-and-tools/git/default.nix
	pkgs/top-level/all-packages.nix
This commit is contained in:
Peter Simons
2013-07-30 11:29:30 +02:00
543 changed files with 11729 additions and 9102 deletions
@@ -0,0 +1,24 @@
{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
'';
meta = {
description = "A simple wrapper around make to colorize the output.";
license = "GPLv2";
};
}