2020-04-24 23:36:52 +00:00
|
|
|
|
{ lib
|
2020-08-20 17:08:02 +00:00
|
|
|
|
, python3
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, stdenv
|
|
|
|
|
, writeTextDir
|
|
|
|
|
, substituteAll
|
2020-05-15 21:57:56 +00:00
|
|
|
|
, pkgsHostHost
|
2020-08-20 17:08:02 +00:00
|
|
|
|
, fetchpatch
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
pname = "meson";
|
2020-10-16 20:44:37 +00:00
|
|
|
|
version = "0.55.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
|
src = python3.pkgs.fetchPypi {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
inherit pname version;
|
2020-10-16 20:44:37 +00:00
|
|
|
|
sha256 = "19cjy24mfaswxyvqmns6rd7hx05ybqb663zlgklspfr8l4jjmvbb";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
|
# Upstream insists on not allowing bindir and other dir options
|
|
|
|
|
# outside of prefix for some reason:
|
|
|
|
|
# https://github.com/mesonbuild/meson/issues/2561
|
|
|
|
|
# We remove the check so multiple outputs can work sanely.
|
|
|
|
|
./allow-dirs-outside-of-prefix.patch
|
|
|
|
|
|
2020-05-15 21:57:56 +00:00
|
|
|
|
# Meson is currently inspecting fewer variables than autoconf does, which
|
|
|
|
|
# makes it harder for us to use setup hooks, etc. Taken from
|
|
|
|
|
# https://github.com/mesonbuild/meson/pull/6827
|
|
|
|
|
./more-env-vars.patch
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# Unlike libtool, vanilla Meson does not pass any information
|
|
|
|
|
# about the path library will be installed to to g-ir-scanner,
|
|
|
|
|
# breaking the GIR when path other than ${!outputLib}/lib is used.
|
|
|
|
|
# We patch Meson to add a --fallback-library-path argument with
|
|
|
|
|
# library install_dir to g-ir-scanner.
|
|
|
|
|
./gir-fallback-path.patch
|
|
|
|
|
|
|
|
|
|
# In common distributions, RPATH is only needed for internal libraries so
|
|
|
|
|
# meson removes everything else. With Nix, the locations of libraries
|
|
|
|
|
# are not as predictable, therefore we need to keep them in the RPATH.
|
|
|
|
|
# At the moment we are keeping the paths starting with /nix/store.
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/31222#issuecomment-365811634
|
|
|
|
|
(substituteAll {
|
|
|
|
|
src = ./fix-rpath.patch;
|
|
|
|
|
inherit (builtins) storeDir;
|
|
|
|
|
})
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
|
|
# When Meson removes build_rpath from DT_RUNPATH entry, it just writes
|
|
|
|
|
# the shorter NUL-terminated new rpath over the old one to reduce
|
|
|
|
|
# the risk of potentially breaking the ELF files.
|
|
|
|
|
# But this can cause much bigger problem for Nix as it can produce
|
|
|
|
|
# cut-in-half-by-\0 store path references.
|
|
|
|
|
# Let’s just clear the whole rpath and hope for the best.
|
|
|
|
|
./clear-old-rpath.patch
|
2020-11-06 00:33:48 +00:00
|
|
|
|
|
|
|
|
|
# Patch out default boost search paths to avoid impure builds on
|
|
|
|
|
# unsandboxed non-NixOS builds, see:
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/86131#issuecomment-711051774
|
|
|
|
|
./boost-Do-not-add-system-paths-on-nix.patch
|
2020-04-24 23:36:52 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
|
2020-05-15 21:57:56 +00:00
|
|
|
|
# Ensure there will always be a native C compiler when meson is used, as a
|
|
|
|
|
# workaround until https://github.com/mesonbuild/meson/pull/6512 lands.
|
|
|
|
|
depsHostHostPropagated = [ pkgsHostHost.stdenv.cc ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
# 0.45 update enabled tests but they are failing
|
|
|
|
|
doCheck = false;
|
|
|
|
|
# checkInputs = [ ninja pkgconfig ];
|
|
|
|
|
# checkPhase = "python ./run_project_tests.py";
|
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
|
postFixup = ''
|
|
|
|
|
pushd $out/bin
|
|
|
|
|
# undo shell wrapper as meson tools are called with python
|
|
|
|
|
for i in *; do
|
|
|
|
|
mv ".$i-wrapped" "$i"
|
|
|
|
|
done
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
# Do not propagate Python
|
|
|
|
|
rm $out/nix-support/propagated-build-inputs
|
|
|
|
|
'';
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
meta = with lib; {
|
|
|
|
|
homepage = "https://mesonbuild.com";
|
|
|
|
|
description = "SCons-like build system that use python as a front-end language and Ninja as a building backend";
|
|
|
|
|
license = licenses.asl20;
|
2020-05-03 17:38:23 +00:00
|
|
|
|
maintainers = with maintainers; [ jtojnar mbe ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
|
|
|
|
}
|