Fix Wine libDRM reference
This commit is contained in:
parent
8406a62973
commit
e9439d7811
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, xlibs, flex, bison, mesa, alsaLib
|
{ stdenv, fetchurl, xlibs, flex, bison, mesa, alsaLib
|
||||||
, ncurses, libpng, libjpeg, lcms, freetype, fontconfig, fontforge
|
, ncurses, libpng, libjpeg, lcms, freetype, fontconfig, fontforge
|
||||||
, libxml2, libxslt, openssl, gnutls, cups
|
, libxml2, libxslt, openssl, gnutls, cups, libdrm
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert stdenv.isLinux;
|
assert stdenv.isLinux;
|
||||||
|
@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||||
# them to the RPATH so that the user doesn't have to set them in
|
# them to the RPATH so that the user doesn't have to set them in
|
||||||
# LD_LIBRARY_PATH.
|
# LD_LIBRARY_PATH.
|
||||||
NIX_LDFLAGS = map (path: "-rpath ${path}/lib ") [
|
NIX_LDFLAGS = map (path: "-rpath ${path}/lib ") [
|
||||||
freetype fontconfig stdenv.gcc.gcc mesa mesa.libdrm
|
freetype fontconfig stdenv.gcc.gcc mesa libdrm
|
||||||
xlibs.libXinerama xlibs.libXrender xlibs.libXrandr
|
xlibs.libXinerama xlibs.libXrender xlibs.libXrandr
|
||||||
xlibs.libXcursor xlibs.libXcomposite libpng libjpeg
|
xlibs.libXcursor xlibs.libXcomposite libpng libjpeg
|
||||||
openssl gnutls cups
|
openssl gnutls cups
|
||||||
|
|
Loading…
Reference in New Issue