* 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. svn path=/nixpkgs/trunk/; revision=9177
This commit is contained in:
parent
aa983025d6
commit
38ace454e9
|
@ -28,5 +28,6 @@ stdenv.mkDerivation {
|
||||||
md5 = "1a8c4d4fc699233f5fdb902b8753099e";
|
md5 = "1a8c4d4fc699233f5fdb902b8753099e";
|
||||||
}) */
|
}) */
|
||||||
buildInputs = [pkgconfig x11 libXmu libXi makedepend libdrm glproto libXxf86vm];
|
buildInputs = [pkgconfig x11 libXmu libXi makedepend libdrm glproto libXxf86vm];
|
||||||
|
passthru = {inherit libdrm;};
|
||||||
meta = {description = "OpenGL-compatible 3D library. Supports acceleration.";};
|
meta = {description = "OpenGL-compatible 3D library. Supports acceleration.";};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{stdenv, fetchurl, libX11, gtk, flex, libICE, bison, libXi,
|
{ stdenv, fetchurl, xlibs, flex, bison, mesa, alsaLib
|
||||||
mesa, libXcursor, libXinerama, libXrandr,
|
, ncurses, libpng, libjpeg, lcms, freetype
|
||||||
libXrender, libXxf86vm, alsaLib, ncurses, libjpeg,
|
}:
|
||||||
lcms}:
|
|
||||||
|
let lib = import ../../../lib/default.nix; in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "wine-0.9.43";
|
name = "wine-0.9.43";
|
||||||
|
@ -11,7 +12,22 @@ stdenv.mkDerivation {
|
||||||
sha256 = "0r6rz3zi5p7razn957lf2zy290hp36jrlfz4cpy23y9179r8i66x";
|
sha256 = "0r6rz3zi5p7razn957lf2zy290hp36jrlfz4cpy23y9179r8i66x";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [libX11 libICE gtk flex bison libXi mesa libXcursor
|
buildInputs = [
|
||||||
libXinerama libXrandr libXrender libXxf86vm alsaLib ncurses
|
xlibs.xlibs flex bison xlibs.libXi mesa
|
||||||
libjpeg lcms];
|
xlibs.libXcursor xlibs.libXinerama xlibs.libXrandr
|
||||||
|
xlibs.libXrender xlibs.libXxf86vm alsaLib ncurses
|
||||||
|
libpng libjpeg lcms
|
||||||
|
];
|
||||||
|
|
||||||
|
# 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.
|
||||||
|
NIX_LDFLAGS = map (path: "-rpath " + path + "/lib") [
|
||||||
|
freetype stdenv.gcc.gcc mesa mesa.libdrm
|
||||||
|
xlibs.libXinerama xlibs.libXrender xlibs.libXrandr xlibs.libXcursor
|
||||||
|
];
|
||||||
|
|
||||||
|
# Don't shrink the ELF RPATHs in order to keep the extra RPATH
|
||||||
|
# elements specified above.
|
||||||
|
dontPatchELF = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3822,10 +3822,7 @@ rec {
|
||||||
wine = import ../misc/emulators/wine {
|
wine = import ../misc/emulators/wine {
|
||||||
stdenv = overrideGCC stdenv gcc41NPTL;
|
stdenv = overrideGCC stdenv gcc41NPTL;
|
||||||
inherit fetchurl flex bison mesa ncurses
|
inherit fetchurl flex bison mesa ncurses
|
||||||
libjpeg alsaLib lcms;
|
libpng libjpeg alsaLib lcms xlibs freetype;
|
||||||
inherit (xlibs) libX11 libICE libXi libXcursor
|
|
||||||
libXinerama libXrandr libXrender libXxf86vm;
|
|
||||||
inherit (gtkLibs) gtk;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
xsane = import ../misc/xsane {
|
xsane = import ../misc/xsane {
|
||||||
|
|
Loading…
Reference in New Issue