mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add meson-0.59.
Since gtkmm@3 at least requires it, to workaround a possible new bug in Meson. Keep Meson at 0.60, because it also introduces useful features, such as validating that the build options used exist. * gnu/packages/build-tools.scm (meson-0.59): New variable.
This commit is contained in:
parent
5f818705b4
commit
06d2227e7e
1 changed files with 16 additions and 0 deletions
|
@ -297,6 +297,22 @@ files}, are written in a custom domain-specific language (@dfn{DSL}) that
|
|||
resembles Python.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
;;; This older Meson variant is kept for now for gtkmm and others that may
|
||||
;;; have problems with 0.60.
|
||||
(define-public meson-0.59
|
||||
(package/inherit meson
|
||||
(version "0.59.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/mesonbuild/meson/"
|
||||
"releases/download/" version "/meson-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"117cm8794h291lca1wljz1pwnzidgbvrpg3mw3np6ksma368hyd7"))
|
||||
(patches (search-patches
|
||||
"meson-allow-dirs-outside-of-prefix.patch"))))))
|
||||
|
||||
(define-public premake4
|
||||
(package
|
||||
(name "premake")
|
||||
|
|
Loading…
Reference in a new issue