pkgs/misc/emulators/wine: add support for gecko HTML rendering engine

svn path=/nixpkgs/trunk/; revision=24021
This commit is contained in:
Peter Simons 2010-10-01 13:45:19 +00:00
parent 30eddde3f5
commit fb4249da1a

View File

@ -18,6 +18,11 @@ stdenv.mkDerivation rec {
sha256 = s.hash;
};
gecko = fetchurl {
url = "http://downloads.sourceforge.net/wine/wine_gecko-1.1.0-x86.cab";
sha256 = "0a8bpqqhx146innrdwhn4c0jqi90mkmp8kw6aqwildm073yy31hp";
};
buildInputs = [
xlibs.xlibs flex bison xlibs.libXi mesa
xlibs.libXcursor xlibs.libXinerama xlibs.libXrandr
@ -40,6 +45,8 @@ stdenv.mkDerivation rec {
# elements specified above.
dontPatchELF = true;
postInstall = "install -D ${gecko} $out/share/wine/gecko/wine_gecko-1.1.0-x86.cab";
meta = {
homepage = "http://www.winehq.org/";
license = "LGPL";