mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 01:54:34 +00:00
meson: 0.26.0 -> 0.32.0
This commit is contained in:
parent
d21727991b
commit
a18abd2aa3
@ -1,24 +1,17 @@
|
|||||||
{ stdenv, fetchurl, ninja, python3 }:
|
{ lib, python3Packages, fetchurl }:
|
||||||
|
python3Packages.buildPythonPackage rec {
|
||||||
stdenv.mkDerivation rec {
|
name = "meson-0.32.0";
|
||||||
name = "meson-0.26.0";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/jpakkane/meson/archive/0.26.0.tar.gz";
|
url = "mirror://pypi/m/meson/${name}.tar.gz";
|
||||||
sha256 = "1hmfn1bkxnwsnlhw6x9ryfcm4zwsf2w7h51cll1xrxg1rq08fvck";
|
sha256 = "1i5m4q53sr55aw8kx761kh0rsfwkpq0gfa0c0k3jf66y4aml6n54";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ninja python3 ];
|
meta = with lib; {
|
||||||
|
homepage = http://mesonbuild.com;
|
||||||
installPhase = ''
|
|
||||||
python3 ./install_meson.py --prefix=$out --destdir="$pkgdir/"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "http://mesonbuild.com";
|
|
||||||
description = "SCons-like build system that use python as a front-end language and Ninja as a building backend";
|
description = "SCons-like build system that use python as a front-end language and Ninja as a building backend";
|
||||||
license = stdenv.lib.licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = [ stdenv.lib.maintainers.mbe ];
|
maintainers = with maintainers; [ mbe rasendubi ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user