Added lincity - a city simulation. And if I build houses, I build houses here.

svn path=/nixpkgs/trunk/; revision=12539
This commit is contained in:
Michael Raskin 2008-08-08 07:16:34 +00:00
parent 8302b6ba69
commit aaba3d2440
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,25 @@
args : with args;
let
version = lib.getAttr ["version"] "1.12.1" args;
sha256 = lib.getAttr ["sha256"]
"0xmrp7vkkp1hfblb6nl3rh2651qsbcm21bnncpnma1sf40jaf8wj" args;
pkgName = "lincity";
in
rec {
src = fetchurl {
url = "mirror://sourceforge/lincity/${pkgName}-${version}.tar.gz";
inherit sha256;
};
buildInputs = [libICE libpng libSM libX11 libXext
xextproto zlib xproto];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["doConfigure" "doMakeInstall"];
name = "${pkgName}-" + version;
meta = {
description = "City simulation game";
};
}

View file

@ -7077,6 +7077,12 @@ let pkgs = rec {
inherit fetchurl stdenv SDL openal freealut zlib libpng python;
};
lincity = builderDefsPackage (import ../games/lincity) {
inherit (xlibs) libX11 libXext xextproto
libICE libSM xproto;
inherit libpng zlib;
} null;
micropolis = import ../games/micropolis {
inherit lib fetchurl stdenv;
inherit (xlibs) libX11 libXpm libXext xextproto;