2017-04-26 15:35:11 +01:00
|
|
|
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2017-10-10 22:11:38 +01:00
|
|
|
version = "0.43.0";
|
2017-04-26 15:35:11 +01:00
|
|
|
pname = "meson";
|
|
|
|
name = "${pname}-${version}";
|
2015-10-21 06:00:41 +01:00
|
|
|
|
2017-04-26 15:35:11 +01:00
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2017-10-10 22:11:38 +01:00
|
|
|
sha256 = "0qn5hyzvam3rimn7g3671s1igj7fbkwdnf5nc8jr4d5swy25mq61";
|
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
|
|
|
|
'';
|
|
|
|
|
2017-11-09 02:48:26 +00:00
|
|
|
patches = [
|
|
|
|
# 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
|
|
|
|
];
|
|
|
|
|
2017-09-25 20:59:11 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -i -e 's|e.fix_rpath(install_rpath)||' mesonbuild/scripts/meson_install.py
|
|
|
|
'';
|
|
|
|
|
2017-10-29 18:42:55 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
2017-08-27 18:42:21 +01:00
|
|
|
|
2016-07-23 21:30:02 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = http://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;
|
|
|
|
maintainers = with maintainers; [ mbe rasendubi ];
|
|
|
|
platforms = platforms.all;
|
2015-10-21 06:00:41 +01:00
|
|
|
};
|
|
|
|
}
|