2019-11-14 11:04:24 +00:00
|
|
|
{ lib
|
|
|
|
, python3Packages
|
|
|
|
, stdenv
|
|
|
|
, writeTextDir
|
|
|
|
, substituteAll
|
2020-04-29 03:51:22 +01:00
|
|
|
, pkgsHostHost
|
2019-11-14 11:04:24 +00:00
|
|
|
}:
|
2018-07-29 21:48:24 +01:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2017-04-26 15:35:11 +01:00
|
|
|
pname = "meson";
|
2020-05-15 15:54:26 +01:00
|
|
|
version = "0.54.2";
|
2015-10-21 06:00:41 +01:00
|
|
|
|
2017-04-26 15:35:11 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-04 16:53:31 +01:00
|
|
|
sha256 = "0m84zb0q67vnxmd6ldz477w6yjdnk9c44xhlwh1g1pzqx3m6wwd7";
|
2015-10-21 06:00:41 +01:00
|
|
|
};
|
|
|
|
|
2017-04-26 15:35:11 +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
|
2018-09-02 18:28:49 +01:00
|
|
|
|
|
|
|
# Do not propagate Python
|
|
|
|
rm $out/nix-support/propagated-build-inputs
|
2017-04-26 15:35:11 +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;
|
|
|
|
})
|
|
|
|
];
|
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
|
|
|
|
2020-04-29 03:51:22 +01: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 ];
|
|
|
|
|
2018-03-06 02:29:07 +00:00
|
|
|
# 0.45 update enabled tests but they are failing
|
|
|
|
doCheck = false;
|
|
|
|
# checkInputs = [ ninja pkgconfig ];
|
|
|
|
# checkPhase = "python ./run_project_tests.py";
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|