diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-01-26 18:09:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-22 12:35:46 +0200 |
commit | 0eacf52837f184237536c8fa704d3ab1175901d0 (patch) | |
tree | 5001a69207eea9f9a6a82d0c0702ae9c540ba25a /gnu/packages | |
parent | 47b3daeaa1feb4d0512efa8c7e1c135b8d433013 (diff) | |
download | guix-0eacf52837f184237536c8fa704d3ab1175901d0.tar.gz |
gnu: wlroots: Update to 0.15.1.
* gnu/packages/wm.scm (wlroots): Update to 0.15.1. [source]: Update url link to 'https://gitlab.freedesktop.org/wlroots/wlroots' due to original link pointing now to archived repo. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/wm.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 0dd329bcca..7424fb83d0 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -45,7 +45,7 @@ ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2021 qblade <qblade@protonmail.com> ;;; Copyright © 2021 lasnesne <lasnesne@lagunposprasihopre.org> -;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com> +;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com> ;;; Copyright © 2021 jgart <jgart@dismail.de> ;;; Copyright © 2021 Disseminate Dissent <disseminatedissent@protonmail.com> ;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com> @@ -1509,16 +1509,16 @@ functionality to display information about the most commonly used services.") (define-public wlroots (package (name "wlroots") - (version "0.14.1") + (version "0.15.1") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/swaywm/wlroots") + (url "https://gitlab.freedesktop.org/wlroots/wlroots") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1sshp3lvlkl1i670kxhwsb4xzxl8raz6769kqvgmxzcb63ns9ay1")))) + (base32 "00s73nhi3sc48l426jdlqwpclg41kx1hv0yk4yxhbzw19gqpfm1h")))) (build-system meson-build-system) (arguments `(#:phases |