2007-08-21 02:00:23 +02:00
|
|
|
{ stdenv, fetchurl, xlibs, flex, bison, mesa, alsaLib
|
2007-08-31 14:14:36 +02:00
|
|
|
, ncurses, libpng, libjpeg, lcms, freetype, fontconfig, fontforge
|
2010-10-01 15:45:12 +02:00
|
|
|
, libxml2, libxslt, openssl, gnutls
|
2007-08-21 02:00:23 +02:00
|
|
|
}:
|
|
|
|
|
2007-08-21 12:16:34 +02:00
|
|
|
assert stdenv.isLinux;
|
2009-04-23 14:46:14 +02:00
|
|
|
assert stdenv.gcc.gcc != null;
|
2007-08-21 12:16:34 +02:00
|
|
|
|
2009-02-27 13:52:55 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-11-10 05:31:52 +01:00
|
|
|
name = "wine-1.3.32";
|
2007-08-09 18:39:04 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-10-03 22:42:45 +02:00
|
|
|
url = "mirror://sourceforge/wine/${name}.tar.bz2";
|
2011-11-10 05:31:52 +01:00
|
|
|
sha256 = "fe1691ef8e9c5c4afeb345ad0f0b364d055cfe67a7e64b0a4a44da4d85cfa8b6";
|
2008-02-08 14:12:13 +01:00
|
|
|
};
|
2007-08-09 18:39:04 +02:00
|
|
|
|
2010-10-01 15:45:19 +02:00
|
|
|
gecko = fetchurl {
|
2011-10-03 22:42:45 +02:00
|
|
|
url = "mirror://sourceforge/wine/wine_gecko-1.3-x86.msi";
|
|
|
|
sha256 = "1bmm826dhq82jzxdld4x9cyg8mgzg8llkki59n9fvxggi7l5jxab";
|
2010-10-01 15:45:19 +02:00
|
|
|
};
|
|
|
|
|
2007-08-21 02:00:23 +02:00
|
|
|
buildInputs = [
|
|
|
|
xlibs.xlibs flex bison xlibs.libXi mesa
|
|
|
|
xlibs.libXcursor xlibs.libXinerama xlibs.libXrandr
|
2008-02-08 14:12:13 +01:00
|
|
|
xlibs.libXrender xlibs.libXxf86vm xlibs.libXcomposite
|
|
|
|
alsaLib ncurses libpng libjpeg lcms fontforge
|
2010-10-01 15:45:12 +02:00
|
|
|
libxml2 libxslt openssl gnutls
|
2007-08-21 02:00:23 +02: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 17:36:15 +02:00
|
|
|
NIX_LDFLAGS = map (path: "-rpath ${path}/lib ") [
|
2007-08-31 14:14:36 +02:00
|
|
|
freetype fontconfig stdenv.gcc.gcc mesa mesa.libdrm
|
2008-02-08 14:12:13 +01:00
|
|
|
xlibs.libXinerama xlibs.libXrender xlibs.libXrandr
|
2010-10-04 13:51:10 +02:00
|
|
|
xlibs.libXcursor xlibs.libXcomposite libpng libjpeg
|
2010-10-01 15:45:12 +02:00
|
|
|
openssl gnutls
|
2007-08-21 02:00:23 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
# Don't shrink the ELF RPATHs in order to keep the extra RPATH
|
|
|
|
# elements specified above.
|
|
|
|
dontPatchELF = true;
|
2007-08-24 13:37:07 +02:00
|
|
|
|
2011-10-03 22:42:45 +02:00
|
|
|
postInstall = "install -D ${gecko} $out/share/wine/gecko/${gecko.name}";
|
2010-10-01 15:45:19 +02:00
|
|
|
|
2010-10-04 13:51:17 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2007-08-24 13:37:07 +02: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";
|
2011-01-26 16:39:40 +01:00
|
|
|
maintainers = [stdenv.lib.maintainers.raskin stdenv.lib.maintainers.simons];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2007-08-24 13:37:07 +02:00
|
|
|
};
|
2007-08-09 18:39:04 +02:00
|
|
|
}
|