summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/colormake/default.nix
blob: 25ef7ef0b246781f0a8afba5f0a2640fa7aad00a (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
{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 = "Simple wrapper around make to colorize the output";
    license = "GPLv2";
  };
}