nixpkgs/pkgs/development/libraries/mesa/darwin.nix
K900 8a0ea7f45b mesa: fix build on Darwin
- remove merged patch
- add new python3.12 dep
2024-07-01 12:33:16 +03:00

54 lines
920 B
Nix

# The Darwin build of Mesa is different enough that we just give it an entire separate expression.
{
lib,
stdenv,
fetchurl,
bison,
flex,
meson,
ninja,
pkg-config,
python3Packages,
Xplugin,
xorg,
zlib,
}:
let
common = import ./common.nix { inherit lib fetchurl; };
in stdenv.mkDerivation {
inherit (common) pname version src meta;
outputs = [ "out" "dev" ];
nativeBuildInputs = [
bison
flex
meson
ninja
pkg-config
python3Packages.packaging
python3Packages.python
python3Packages.mako
];
buildInputs = [
Xplugin
xorg.libX11
xorg.libXext
xorg.libXfixes
zlib
];
mesonAutoFeatures = "disabled";
mesonFlags = [
"--sysconfdir=/etc"
"--datadir=${placeholder "out"}/share"
(lib.mesonEnable "glvnd" false)
(lib.mesonEnable "shared-glapi" true)
];
# Don't need this on Darwin.
passthru.llvmpipeHook = null;
}