mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Some fixes
This commit is contained in:
parent
1a41887398
commit
7093dd2c70
@ -81,12 +81,14 @@ stdenv.mkDerivation {
|
||||
|
||||
nativeBuildInputs = [ pkgconfig python makedepend file flex bison ];
|
||||
|
||||
propagatedBuildInputs = with xorg; [ libdrm libXdamage libXxf86vm ];
|
||||
propagatedBuildInputs = with xorg; [ libXdamage libXxf86vm ];
|
||||
buildInputs = with xorg; [
|
||||
autoconf automake libtool intltool expat libxml2Python udev llvm
|
||||
autoconf automake libtool intltool expat libxml2Python llvm
|
||||
libXfixes glproto dri2proto libX11 libXext libxcb libXt
|
||||
libffi wayland
|
||||
] ++ stdenv.lib.optionals enableExtraFeatures [ /*libXvMC*/ libvdpau ];
|
||||
] ++ stdenv.lib.optionals enableExtraFeatures [ /*libXvMC*/ libvdpau ]
|
||||
++ stdenv.lib.optional stdenv.isLinux [libdrm udev]
|
||||
;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
doCheck = true;
|
||||
|
@ -4091,6 +4091,7 @@ let
|
||||
|
||||
cairo = callPackage ../development/libraries/cairo {
|
||||
pixman = pixman_cairo; # it's recommended to be in sync
|
||||
glSupport = lib.elem system lib.platforms.mesaPlatforms;
|
||||
};
|
||||
pixman_cairo = callPackage ../development/libraries/pixman { };
|
||||
cairomm = callPackage ../development/libraries/cairomm { };
|
||||
|
Loading…
Reference in New Issue
Block a user