mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
libdrm: fix cross-compile to x86
Don't omit drm_intel when cross-compiling.
We've had this switch since
ca5d91aa60
and it doesn't seem to be needed anymore.
https://hydra.nixos.org/eval/1644952?filter=x86_64-musl.mesa#tabs-still-fail
This commit is contained in:
parent
58d07b1711
commit
d88318ee55
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
|||||||
] ++ lib.optionals (stdenv.isAarch32 || stdenv.isAarch64) [
|
] ++ lib.optionals (stdenv.isAarch32 || stdenv.isAarch64) [
|
||||||
"-Dtegra=true"
|
"-Dtegra=true"
|
||||||
"-Detnaviv=true"
|
"-Detnaviv=true"
|
||||||
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-Dintel=false";
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://gitlab.freedesktop.org/mesa/drm";
|
homepage = "https://gitlab.freedesktop.org/mesa/drm";
|
||||||
|
Loading…
Reference in New Issue
Block a user