diff options
author | Ryan Prior via Guix-patches via <guix-patches@gnu.org> | 2020-11-06 05:09:29 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-11-06 11:46:56 -0500 |
commit | d1d69543ba25c595d6f6b6e326757e36d08cff68 (patch) | |
tree | f24e272a72642de02c5bc6a337c9d015e48011f2 /gnu/packages | |
parent | 0e25fe420e710cbea84b7410964481468d14150f (diff) | |
download | guix-d1d69543ba25c595d6f6b6e326757e36d08cff68.tar.gz guix-d1d69543ba25c595d6f6b6e326757e36d08cff68.zip |
gnu: vala: Update to 0.50.1.
* gnu/packages/gnome.scm (vala-0.48): Remove variable.
(vala-0.50): New variable.
* gnu/packages/gnome-xyz.scm (vala-language-server)[inputs]: Adjust accordingly.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome-xyz.scm | 2 | ||||
-rw-r--r-- | gnu/packages/gnome.scm | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 7f3ae41d17..fa8100ef2e 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -609,7 +609,7 @@ and a few extra features.") ("json-glib" ,json-glib) ("jsonrpc-glib" ,jsonrpc-glib) ("libgee" ,libgee) - ("vala" ,vala-0.48))) + ("vala" ,vala-0.50))) (native-inputs `(("pkg-config" ,pkg-config))) (home-page "https://github.com/benwaffle/vala-language-server") diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 43b681d85d..85ae8ac40c 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4279,10 +4279,10 @@ requirements and without using a different ABI compared to applications and libraries written in C.") (license license:lgpl2.1+))) -(define-public vala-0.48 +(define-public vala-0.50 (package (inherit vala) - (version "0.48.9") + (version "0.50.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/vala/" @@ -4290,7 +4290,7 @@ libraries written in C.") "vala-" version ".tar.xz")) (sha256 (base32 - "1agyrvslv2yh9ikiw7k5nw6j6il1l2zrzfan0pzdpb9xpg9idslw")))))) + "0v4g2gvn7x7cl33h8sj1y2xyyskw5ayaj4jm2jrd3my3r439z3cm")))))) (define-public vte (package |