diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-15 17:23:23 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-07-15 17:41:41 -0400 |
commit | e2bd7836577c3c055302faec0fdbb41e2e67b342 (patch) | |
tree | 0c98cab9cbb607597b6fe7a08e9f4270656c6adf | |
parent | bf82f7cbe3067ea6a638655b65f8cfff7b7fd940 (diff) | |
download | guix-e2bd7836577c3c055302faec0fdbb41e2e67b342.tar.gz guix-e2bd7836577c3c055302faec0fdbb41e2e67b342.zip |
gnu: Add vala-next, upgraded to 0.56.2.
* gnu/packages/gnome.scm (vala-next): New variable.
-rw-r--r-- | gnu/packages/gnome.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 0ce96d41de..04f69543d5 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4373,6 +4373,19 @@ the GObject type system and has additional code generation routines that make targeting the GNOME stack simple.") (license license:lgpl2.1+))) +(define-public vala-next + (package + (inherit vala) + (version "0.56.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/vala/" + (version-major+minor version) "/" + "vala-" version ".tar.xz")) + (sha256 + (base32 + "0k0jj3xwjq222x0hbqqy5bykhgk1f1wsb85bqcdgsnbqn6dn3jb6")))))) + ;;; An older variant kept to build libsoup-minimal-2. (define-public vala-0.52 (package/inherit vala |