2007-08-21 00:00:23 +00:00
|
|
|
{ stdenv, fetchurl, xlibs, flex, bison, mesa, alsaLib
|
2007-08-31 12:14:36 +00:00
|
|
|
, ncurses, libpng, libjpeg, lcms, freetype, fontconfig, fontforge
|
2010-10-01 13:45:12 +00:00
|
|
|
, libxml2, libxslt, openssl, gnutls
|
2007-08-21 00:00:23 +00:00
|
|
|
}:
|
|
|
|
|
2007-08-21 10:16:34 +00:00
|
|
|
assert stdenv.isLinux;
|
2009-04-23 12:46:14 +00:00
|
|
|
assert stdenv.gcc.gcc != null;
|
2007-08-21 10:16:34 +00:00
|
|
|
|
2010-10-01 13:45:02 +00:00
|
|
|
let
|
2009-08-23 22:24:17 +00:00
|
|
|
s = import ./src-for-default.nix;
|
|
|
|
in
|
2007-08-18 23:58:30 +00:00
|
|
|
|
2009-02-27 12:52:55 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2009-08-23 22:24:17 +00:00
|
|
|
name = "wine-${s.version}";
|
2007-08-09 16:39:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-08-23 22:24:17 +00:00
|
|
|
url = s.url;
|
|
|
|
sha256 = s.hash;
|
2008-02-08 13:12:13 +00:00
|
|
|
};
|
2007-08-09 16:39:04 +00:00
|
|
|
|
2010-10-01 13:45:19 +00:00
|
|
|
gecko = fetchurl {
|
|
|
|
url = "http://downloads.sourceforge.net/wine/wine_gecko-1.1.0-x86.cab";
|
|
|
|
sha256 = "0a8bpqqhx146innrdwhn4c0jqi90mkmp8kw6aqwildm073yy31hp";
|
|
|
|
};
|
|
|
|
|
2007-08-21 00:00:23 +00:00
|
|
|
buildInputs = [
|
|
|
|
xlibs.xlibs flex bison xlibs.libXi mesa
|
|
|
|
xlibs.libXcursor xlibs.libXinerama xlibs.libXrandr
|
2008-02-08 13:12:13 +00:00
|
|
|
xlibs.libXrender xlibs.libXxf86vm xlibs.libXcomposite
|
|
|
|
alsaLib ncurses libpng libjpeg lcms fontforge
|
2010-10-01 13:45:12 +00:00
|
|
|
libxml2 libxslt openssl gnutls
|
2007-08-21 00:00:23 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Wine locates a lot of libraries dynamically through dlopen(). Add
|
|
|
|
# them to the RPATH so that the user doesn't have to set them in
|
|
|
|
# LD_LIBRARY_PATH.
|
2008-05-29 15:36:15 +00:00
|
|
|
NIX_LDFLAGS = map (path: "-rpath ${path}/lib ") [
|
2007-08-31 12:14:36 +00:00
|
|
|
freetype fontconfig stdenv.gcc.gcc mesa mesa.libdrm
|
2008-02-08 13:12:13 +00:00
|
|
|
xlibs.libXinerama xlibs.libXrender xlibs.libXrandr
|
2010-10-04 11:51:10 +00:00
|
|
|
xlibs.libXcursor xlibs.libXcomposite libpng libjpeg
|
2010-10-01 13:45:12 +00:00
|
|
|
openssl gnutls
|
2007-08-21 00:00:23 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Don't shrink the ELF RPATHs in order to keep the extra RPATH
|
|
|
|
# elements specified above.
|
|
|
|
dontPatchELF = true;
|
2007-08-24 11:37:07 +00:00
|
|
|
|
2010-10-01 13:45:19 +00:00
|
|
|
postInstall = "install -D ${gecko} $out/share/wine/gecko/wine_gecko-1.1.0-x86.cab";
|
|
|
|
|
2007-08-24 11:37:07 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.winehq.org/";
|
|
|
|
license = "LGPL";
|
|
|
|
description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix";
|
2010-01-14 13:17:40 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
|
|
platforms = [ "i686-linux" ];
|
2007-08-24 11:37:07 +00:00
|
|
|
};
|
2007-08-09 16:39:04 +00:00
|
|
|
}
|