about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/colormake/default.nix
blob: 99ed58324afbb795bd0845c9e765236a9ced90d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{stdenv, fetchgit, perl}:

stdenv.mkDerivation {
  pname = "colormake";
  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 = "Simple wrapper around make to colorize the output";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.unix;
  };
}