
They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
72 lines
1.2 KiB
Nix
72 lines
1.2 KiB
Nix
# The Darwin build of Mesa is different enough that we just give it an entire separate expression.
|
|
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
bison,
|
|
flex,
|
|
libxml2,
|
|
llvmPackages,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
python3Packages,
|
|
xorg,
|
|
zlib,
|
|
}:
|
|
let
|
|
common = import ./common.nix { inherit lib fetchFromGitLab; };
|
|
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
|
|
python3Packages.pyyaml
|
|
];
|
|
|
|
buildInputs = [
|
|
libxml2 # should be propagated from libllvm
|
|
llvmPackages.libllvm
|
|
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)
|
|
(lib.mesonEnable "llvm" true)
|
|
];
|
|
|
|
passthru = {
|
|
# needed to pass evaluation of bad platforms
|
|
driverLink = throw "driverLink not supported on darwin";
|
|
# Don't need this on Darwin.
|
|
llvmpipeHook = null;
|
|
};
|
|
|
|
}
|