gnu: seahorse: Upgrade to 41.0.
* gnu/packages/gnome.scm (seahorse): Upgrade to 41.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
bfa3bf0ffc
commit
6e40c00ad1
1 changed files with 9 additions and 5 deletions
|
@ -4339,15 +4339,15 @@ engineering.")
|
||||||
(define-public seahorse
|
(define-public seahorse
|
||||||
(package
|
(package
|
||||||
(name "seahorse")
|
(name "seahorse")
|
||||||
(version "3.36.2")
|
(version "41.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
(version-major+minor version) "/" name "-"
|
(version-major version) "/" name "-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "16wmxxppgcgfj8zkagcny5af1c81x32ysm9d6j9f2k7bmik21ss5"))))
|
(base32 "1x99i7kdvd8hbxcs5rfrq7nw6r9bfzaw263zaigjjj04h6gc1vp6"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:glib-or-gtk? #t
|
'(#:glib-or-gtk? #t
|
||||||
|
@ -4358,7 +4358,11 @@ engineering.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "build-aux/meson_post_install.py"
|
(substitute* "build-aux/meson_post_install.py"
|
||||||
(("gtk-update-icon-cache") "true"))
|
(("gtk-update-icon-cache") "true"))
|
||||||
#t)))))
|
#t))
|
||||||
|
(add-before 'check 'pre-check
|
||||||
|
(lambda _
|
||||||
|
;; Tests require a writable HOME.
|
||||||
|
(setenv "HOME" (getcwd)))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("gtk+" ,gtk+)
|
`(("gtk+" ,gtk+)
|
||||||
("gcr" ,gcr)
|
("gcr" ,gcr)
|
||||||
|
@ -4367,7 +4371,7 @@ engineering.")
|
||||||
("openldap" ,openldap)
|
("openldap" ,openldap)
|
||||||
("openssh" ,openssh)
|
("openssh" ,openssh)
|
||||||
("avahi" ,avahi)
|
("avahi" ,avahi)
|
||||||
("libhandy" ,libhandy-0.0)
|
("libhandy" ,libhandy)
|
||||||
("libpwquality" ,libpwquality)
|
("libpwquality" ,libpwquality)
|
||||||
("libsecret" ,libsecret)
|
("libsecret" ,libsecret)
|
||||||
("libsoup" ,libsoup-minimal-2)))
|
("libsoup" ,libsoup-minimal-2)))
|
||||||
|
|
Reference in a new issue