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
|
2013-06-10 08:04:46 +02:00
|
|
|
, libxml2, libxslt, openssl, gnutls, cups, libdrm, makeWrapper
|
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
|
|
|
|
2013-10-20 20:02:02 +02:00
|
|
|
let
|
2013-11-25 07:48:43 +01:00
|
|
|
version = "1.7.7";
|
2013-10-20 20:02:02 +02:00
|
|
|
name = "wine-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/wine/${name}.tar.bz2";
|
2013-11-25 07:48:43 +01:00
|
|
|
sha256 = "19xcspll0ljbr2v0y7xy4943pgqalya2zrzndqsl2d7kpyv061hi";
|
2013-07-30 14:23:48 +02:00
|
|
|
};
|
|
|
|
|
2013-10-20 20:02:02 +02:00
|
|
|
gecko = fetchurl {
|
|
|
|
url = "mirror://sourceforge/wine/wine_gecko-2.21-x86.msi";
|
|
|
|
sha256 = "1n0zccnvchkg0m896sjx5psk4bxw9if32xyxib1rbfdasykay7zh";
|
|
|
|
};
|
|
|
|
|
2013-07-30 14:23:48 +02:00
|
|
|
gecko64 = fetchurl {
|
|
|
|
url = "mirror://sourceforge/wine/wine_gecko-2.21-x86_64.msi";
|
|
|
|
sha256 = "0grc86dkq90i59zw43hakh62ra1ajnk11m64667xjrlzi7f0ndxw";
|
|
|
|
};
|
|
|
|
|
|
|
|
mono = fetchurl {
|
|
|
|
url = "mirror://sourceforge/wine/wine-mono-0.0.8.msi";
|
|
|
|
sha256 = "00jl24qp7vh3hlqv7wsw1s529lr5p0ybif6s73jy85chqaxj7z1x";
|
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2013-10-20 20:02:02 +02:00
|
|
|
inherit version name src;
|
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
|
2013-06-09 04:35:45 +02:00
|
|
|
libxml2 libxslt openssl gnutls cups makeWrapper
|
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 ") [
|
2013-03-26 18:56:09 +01:00
|
|
|
freetype fontconfig stdenv.gcc.gcc 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
|
2012-12-03 16:02:01 +01:00
|
|
|
openssl gnutls cups
|
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
|
|
|
|
2013-06-09 04:35:45 +02:00
|
|
|
postInstall = ''
|
|
|
|
install -D ${gecko} $out/share/wine/gecko/${gecko.name}
|
2013-07-30 14:23:48 +02:00
|
|
|
'' + stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
|
|
|
|
install -D ${gecko} $out/share/wine/gecko/${gecko64.name}
|
|
|
|
'' + ''
|
|
|
|
install -D ${mono} $out/share/wine/mono/${mono.name}
|
2013-06-09 04:35:45 +02:00
|
|
|
wrapProgram $out/bin/wine --prefix LD_LIBRARY_PATH : ${stdenv.gcc.gcc}/lib
|
|
|
|
'';
|
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";
|
2013-03-06 21:28:59 +01:00
|
|
|
inherit version;
|
2007-08-24 13:37:07 +02:00
|
|
|
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
|
|
|
}
|