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-06-10 06:04:46 +00:00
|
|
|
, libxml2, libxslt, openssl, gnutls, cups, libdrm, makeWrapper
|
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
|
|
|
|
2013-11-16 17:08:43 +00:00
|
|
|
let
|
|
|
|
version = "1.6.1";
|
2013-10-20 18:02:02 +00:00
|
|
|
name = "wine-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/wine/${name}.tar.bz2";
|
2013-11-16 17:08:43 +00:00
|
|
|
sha256 = "0k1qb8hhaf5mbb3jk0a37jx93mvlxpk5c4dslxhalp2mic42rg6m";
|
2013-07-30 12:23:48 +00:00
|
|
|
};
|
|
|
|
|
2013-10-20 18:02:02 +00:00
|
|
|
gecko = fetchurl {
|
|
|
|
url = "mirror://sourceforge/wine/wine_gecko-2.21-x86.msi";
|
|
|
|
sha256 = "1n0zccnvchkg0m896sjx5psk4bxw9if32xyxib1rbfdasykay7zh";
|
|
|
|
};
|
|
|
|
|
2013-07-30 12:23:48 +00: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 18:02:02 +00:00
|
|
|
inherit version name src;
|
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
|
2013-06-09 02:35:45 +00:00
|
|
|
libxml2 libxslt openssl gnutls cups makeWrapper
|
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-03-26 17:56:09 +00:00
|
|
|
freetype fontconfig stdenv.gcc.gcc 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
|
|
|
|
2013-06-09 02:35:45 +00:00
|
|
|
postInstall = ''
|
|
|
|
install -D ${gecko} $out/share/wine/gecko/${gecko.name}
|
2013-07-30 12:23:48 +00: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 02:35:45 +00:00
|
|
|
wrapProgram $out/bin/wine --prefix LD_LIBRARY_PATH : ${stdenv.gcc.gcc}/lib
|
|
|
|
'';
|
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
|
|
|
}
|