mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
8a0ea7f45b
- remove merged patch - add new python3.12 dep
54 lines
920 B
Nix
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;
|
|
}
|