2017-04-26 15:35:11 +01:00
|
|
|
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2017-08-14 19:15:15 +01:00
|
|
|
version = "0.41.2";
|
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-08-14 19:15:15 +01:00
|
|
|
sha256 = "0p69hir68ar3nzrjn0zjsnyzq181b0kq6arrcmxqpzl7g5qhf5xd";
|
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
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|