mbakke pushed a commit to branch master
in repository guix.
commit 1d2b1ea6ebc220f803b8604d9d704f0a6138ced9
Author: Marius Bakke <[email protected]>
AuthorDate: Thu Aug 25 13:04:48 2022 +0200
gnu: meson: Add 0.63.1.
* gnu/packages/build-tools.scm (meson-0.63): New variable.
---
gnu/packages/build-tools.scm | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 5c9d5409cb..1a7cfae3d1 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -325,6 +325,19 @@ resembles Python.")
(patches (search-patches
"meson-allow-dirs-outside-of-prefix.patch"))))))
+(define-public meson-0.63
+ (package
+ (inherit meson)
+ (version "0.63.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/mesonbuild/meson/"
+ "releases/download/" version "/meson-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1sb5rdra5zc6c3ni8x65zs7r7vsnbarammf5440zzmhkf8li7zh6"))))))
+
(define-public premake4
(package
(name "premake")