gnu: meson: Update to 1.1.1.

* gnu/packages/build-tools.scm (meson): Replace with meson/newer.
(meson/newer): New variable.
This commit is contained in:
Liliana Marie Prikler 2023-06-11 18:33:09 +02:00
parent 0d165fba93
commit 09b310172e
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -293,6 +293,7 @@ (define-public gn
(define-public meson
(package
(name "meson")
(replacement meson/newer)
(version "1.1.0")
(source (origin
(method url-fetch)
@ -329,6 +330,19 @@ (define-public meson
resembles Python.")
(license license:asl2.0)))
(define-public meson/newer
(package
(inherit meson)
(version "1.1.1")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/mesonbuild/meson/"
"releases/download/" version "/meson-"
version ".tar.gz"))
(sha256
(base32
"073vf8059nzs6p5aaqr5wva4pgl81540szdb5yw9yhyajwgm8jyh"))))))
(define-public meson-python
(package
(name "meson-python")