2019-11-14 11:04:24 +00:00
|
|
|
|
{ lib
|
2020-07-05 23:44:24 +01:00
|
|
|
|
, python3
|
2019-11-14 11:04:24 +00:00
|
|
|
|
, stdenv
|
|
|
|
|
, writeTextDir
|
|
|
|
|
, substituteAll
|
2020-08-14 01:25:13 +01:00
|
|
|
|
, fetchpatch
|
2020-12-23 00:45:06 +00:00
|
|
|
|
, installShellFiles
|
2019-11-14 11:04:24 +00:00
|
|
|
|
}:
|
2018-07-29 21:48:24 +01:00
|
|
|
|
|
2020-07-05 23:44:24 +01:00
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2017-04-26 15:35:11 +01:00
|
|
|
|
pname = "meson";
|
2020-10-30 09:27:51 +00:00
|
|
|
|
version = "0.56.0";
|
2015-10-21 06:00:41 +01:00
|
|
|
|
|
2020-07-05 23:44:24 +01:00
|
|
|
|
src = python3.pkgs.fetchPypi {
|
2017-04-26 15:35:11 +01:00
|
|
|
|
inherit pname version;
|
2020-10-30 09:27:51 +00:00
|
|
|
|
sha256 = "04vj250bwrzq7c0z1r96b0z0vgirvn0m367wm3ygqmfdy67x6799";
|
2015-10-21 06:00:41 +01:00
|
|
|
|
};
|
|
|
|
|
|
2017-11-09 02:48:26 +00:00
|
|
|
|
patches = [
|
2018-03-05 05:57:38 +00:00
|
|
|
|
# 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-04-26 21:32:56 +01: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
|
|
|
|
|
|
2017-11-09 02:48:26 +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
|
|
|
|
|
|
2018-02-23 00:42:35 +00:00
|
|
|
|
# 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-11 14:30:39 +01: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-10-26 07:17:14 +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
|
2018-02-23 00:42:35 +00:00
|
|
|
|
];
|
2017-09-25 20:59:11 +01:00
|
|
|
|
|
2017-10-29 18:42:55 +00:00
|
|
|
|
setupHook = ./setup-hook.sh;
|
2017-08-27 18:42:21 +01:00
|
|
|
|
|
2018-03-06 02:29:07 +00:00
|
|
|
|
# 0.45 update enabled tests but they are failing
|
|
|
|
|
doCheck = false;
|
2021-01-19 06:50:56 +00:00
|
|
|
|
# checkInputs = [ ninja pkg-config ];
|
2018-03-06 02:29:07 +00:00
|
|
|
|
# checkPhase = "python ./run_project_tests.py";
|
|
|
|
|
|
2020-07-05 23:44:24 +01: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-12-23 00:45:06 +00:00
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
installShellCompletion --zsh data/shell-completions/zsh/_meson
|
|
|
|
|
installShellCompletion --bash data/shell-completions/bash/meson
|
|
|
|
|
'';
|
|
|
|
|
|
2016-07-23 21:30:02 +01:00
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://mesonbuild.com";
|
2015-10-24 11:50:15 +01:00
|
|
|
|
description = "SCons-like build system that use python as a front-end language and Ninja as a building backend";
|
2016-07-23 21:30:02 +01:00
|
|
|
|
license = licenses.asl20;
|
2020-04-29 14:52:29 +01:00
|
|
|
|
maintainers = with maintainers; [ jtojnar mbe ];
|
2016-07-23 21:30:02 +01:00
|
|
|
|
platforms = platforms.all;
|
2015-10-21 06:00:41 +01:00
|
|
|
|
};
|
|
|
|
|
}
|