fcad0b0a5a
Some of these should be longDescriptions, but most others just shouldn't contain newlines. E.g. write description = "Bla"; and not description = '' Bla ''; This pollutes "nix-env -qa --description" output. svn path=/nixpkgs/trunk/; revision=14310
20 lines
527 B
Nix
20 lines
527 B
Nix
{stdenv, fetchurl, SDL, openal, freealut, zlib, libpng, python}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gemrb-0.2.9";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/gemrb/gemrb-0.2.9.tar.gz;
|
|
sha256 = "0mygig4icx87a5skdv33yiwn8q4mv55f5qsks4sn40hrs69gcih0";
|
|
};
|
|
|
|
buildInputs = [SDL openal freealut libpng python];
|
|
|
|
configureFlags = "--with-zlib=${zlib}";
|
|
|
|
meta = {
|
|
description = "A reimplementation of the Infinity Engine, used by games such as Baldur's Gate";
|
|
homepage = http://gemrb.sourceforge.net/;
|
|
};
|
|
}
|