about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/build-managers/colormake/default.nix
blob: 9f4cb366e239fc5e1b220a38e3a84aaf8142f83a (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 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 = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.unix;
  };
}