gnu: gnome-calculator: Update to 40.1.
* gnu/packages/gnome.scm (gnome-calculator): Update to 40.1. [source]: Fix the URL. [arguments]: Add a 'pre-check phase. [inputs]: Add libhandy.
This commit is contained in:
parent
0a0c8f426c
commit
cb79e5a175
@ -9981,18 +9981,25 @@ handling the startup notification side.")
|
|||||||
(define-public gnome-calculator
|
(define-public gnome-calculator
|
||||||
(package
|
(package
|
||||||
(name "gnome-calculator")
|
(name "gnome-calculator")
|
||||||
(version "3.36.0")
|
(version "40.1")
|
||||||
(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) "/"
|
(version-major version) "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1cqd4b25qp1i0p04m669jssg1l5sdapc1mniv9jssvw5r7wk1s52"))))
|
"1xkazxbkpn1z5pfphhps7fc5q4yc8lp7f6b222n8bx5iyxhwbrkz"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments '(#:glib-or-gtk? #t))
|
(arguments
|
||||||
|
'(#:glib-or-gtk? #t
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'pre-check
|
||||||
|
(lambda _
|
||||||
|
;; Tests require a writable HOME.
|
||||||
|
(setenv "HOME" (getcwd)))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gettext" ,gettext-minimal)
|
`(("gettext" ,gettext-minimal)
|
||||||
("glib:bin" ,glib "bin") ; for glib-compile-schemas, gio-2.0.
|
("glib:bin" ,glib "bin") ; for glib-compile-schemas, gio-2.0.
|
||||||
@ -10004,6 +10011,7 @@ handling the startup notification side.")
|
|||||||
`(("glib" ,glib)
|
`(("glib" ,glib)
|
||||||
("gtksourceview" ,gtksourceview)
|
("gtksourceview" ,gtksourceview)
|
||||||
("libgee" ,libgee)
|
("libgee" ,libgee)
|
||||||
|
("libhandy" ,libhandy)
|
||||||
("libsoup" ,libsoup)
|
("libsoup" ,libsoup)
|
||||||
("libxml2" ,libxml2)
|
("libxml2" ,libxml2)
|
||||||
("mpc" ,mpc)
|
("mpc" ,mpc)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user