Adding the rally game Trigger. As a side effect, I add jam.

svn path=/nixpkgs/trunk/; revision=26615
This commit is contained in:
Lluís Batlle i Rossell
2011-03-30 18:45:11 +00:00
parent 11472a0501
commit 48748dedcb
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,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";
};
}