biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / build-managers / colormake / default.nix
blob251268a449d41c378931f5ed7b5c1fb824d17db8
1 { lib, stdenv, fetchFromGitHub, perl }:
3 stdenv.mkDerivation {
4   pname = "colormake";
5   version = "2.1.0";
7   buildInputs = [ perl ];
9   src = fetchFromGitHub {
10     owner = "pagekite";
11     repo = "Colormake";
12     rev = "66544f40d";
13     sha256 = "8e714c5540305d169989d9387dbac47b8b9fb2cfb424af7bcd412bfe684dc6d7";
14   };
16   installPhase = ''
17     mkdir -p $out/bin
18     cp -fa colormake.pl colormake colormake-short clmake clmake-short $out/bin
19   '';
21   meta = with lib; {
22     description = "Simple wrapper around make to colorize the output";
23     homepage = "https://bre.klaki.net/programs/colormake/";
24     license = licenses.gpl2;
25     platforms = platforms.unix;
26     maintainers = with maintainers; [ bhipple ];
27   };