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
|
2013-05-09 11:58:08 +00:00
|
|
|
, libxml2, libxslt, openssl, gnutls, cups
|
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
|
|
|
|
2009-02-27 12:52:55 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-06-07 06:23:48 +00:00
|
|
|
version = "1.5.31";
|
2013-02-02 14:01:43 +00:00
|
|
|
name = "wine-${version}";
|
2007-08-09 16:39:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-10-03 20:42:45 +00:00
|
|
|
url = "mirror://sourceforge/wine/${name}.tar.bz2";
|
2013-06-07 06:23:48 +00:00
|
|
|
sha256 = "1hlj1r3xi1mbqblkiwrcphvvb8rd50qig25jhyid58qp3r2lf9a6";
|
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 {
|
2013-02-02 14:01:43 +00:00
|
|
|
url = "mirror://sourceforge/wine/wine_gecko-1.9-x86.msi";
|
|
|
|
sha256 = "10p7djsf85xjk8rzg3hgw5fskrn8402y2aijy701xwm4hy9ga79g";
|
2010-10-01 13:45:19 +00:00
|
|
|
};
|
|
|
|
|
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
|
2012-12-03 15:02:01 +00:00
|
|
|
libxml2 libxslt openssl gnutls cups
|
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 ") [
|
2013-05-09 11:58:08 +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
|
2012-12-03 15:02:01 +00:00
|
|
|
openssl gnutls cups
|
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
|
|
|
|
2011-10-03 20:42:45 +00:00
|
|
|
postInstall = "install -D ${gecko} $out/share/wine/gecko/${gecko.name}";
|
2010-10-01 13:45:19 +00:00
|
|
|
|
2010-10-04 11:51:17 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2007-08-24 11:37:07 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.winehq.org/";
|
|
|
|
license = "LGPL";
|
2013-03-06 20:28:59 +00:00
|
|
|
inherit version;
|
2007-08-24 11:37:07 +00:00
|
|
|
description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix";
|
2011-01-26 15:39:40 +00:00
|
|
|
maintainers = [stdenv.lib.maintainers.raskin stdenv.lib.maintainers.simons];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2007-08-24 11:37:07 +00:00
|
|
|
};
|
2007-08-09 16:39:04 +00:00
|
|
|
}
|