nixpkgs-suyu/pkgs/development/tools/build-managers/meson/default.nix

18 lines
546 B
Nix
Raw Normal View History

2016-07-23 22:30:02 +02:00
{ lib, python3Packages, fetchurl }:
python3Packages.buildPythonPackage rec {
name = "meson-0.32.0";
2015-10-21 07:00:41 +02:00
src = fetchurl {
2016-07-23 22:30:02 +02:00
url = "mirror://pypi/m/meson/${name}.tar.gz";
sha256 = "1i5m4q53sr55aw8kx761kh0rsfwkpq0gfa0c0k3jf66y4aml6n54";
2015-10-21 07:00:41 +02:00
};
2016-07-23 22:30:02 +02:00
meta = with lib; {
homepage = http://mesonbuild.com;
2015-10-24 12:50:15 +02:00
description = "SCons-like build system that use python as a front-end language and Ninja as a building backend";
2016-07-23 22:30:02 +02:00
license = licenses.asl20;
maintainers = with maintainers; [ mbe rasendubi ];
platforms = platforms.all;
2015-10-21 07:00:41 +02:00
};
}