summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/jam/default.nix
blob: d2a002a70cf797629637b1df80eff820d8bc34a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "jam-2.5";
  src = fetchurl {
    url = ftp://ftp.perforce.com/jam/jam-2.5.tar;
    sha256 = "04c6khd7gdkqkvx4h3nbz99lyz7waid4fd221hq5chcygyx1sj3i";
  };

  installPhase = ''
    ensureDir $out/bin
    cp bin.linux/jam $out/bin
  '';

  meta = {
    homepage = http://public.perforce.com/wiki/Jam;
    license = "free";
    description = "Just Another Make";
  };
}