[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: meson: Update to 0.42.0.
From: |
Ludovic Courtès |
Subject: |
01/02: gnu: meson: Update to 0.42.0. |
Date: |
Fri, 15 Sep 2017 18:04:04 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 67f8ba118e2b98755253a5b4ba647efb4314e03f
Author: Peter Mikkelsen <address@hidden>
Date: Wed Sep 13 14:50:01 2017 +0200
gnu: meson: Update to 0.42.0.
* gnu/packages/build-tools.scm (meson): Update to 0.42.0.
[propagated-inputs]: Add python.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/build-tools.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 353c9c8..5cc0da5 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -70,7 +70,7 @@ makes a few sacrifices to acquire fast full and incremental
build times.")
(define-public meson
(package
(name "meson")
- (version "0.41.1")
+ (version "0.42.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/mesonbuild/meson/"
@@ -78,9 +78,10 @@ makes a few sacrifices to acquire fast full and incremental
build times.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "12ygjh1dxi8z06nl704rfb6zj0m2zjqp279nymfgzfgy5zq032d4"))))
+ "0vyp9rkymzzzilhnf04ryszslyp9a0y0wf4agyijd4w5lcnqlcbc"))))
(build-system python-build-system)
(inputs `(("ninja", ninja)))
+ (propagated-inputs `(("python" ,python)))
(home-page "https://mesonbuild.com/")
(synopsis "Build system designed to be fast and user-friendly")
(description