nixpkgs/pkgs/development/libraries/mesa/darwin.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
920 B
Nix
Raw Normal View History

# 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;
}