gnu: pantheon-calculator: Update to 1.7.2.
* gnu/packages/pantheon.scm (pantheon-calculator): Update to 1.7.2. [arguments]: Remove trailing boolean. [inputs]: Use guix style and add libhandy input. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c9cca908fa
commit
86ee397e26
1 changed files with 8 additions and 8 deletions
|
@ -67,7 +67,7 @@ in apps built for the Pantheon desktop.")
|
||||||
(define-public pantheon-calculator
|
(define-public pantheon-calculator
|
||||||
(package
|
(package
|
||||||
(name "pantheon-calculator")
|
(name "pantheon-calculator")
|
||||||
(version "1.5.5")
|
(version "1.7.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -77,7 +77,7 @@ in apps built for the Pantheon desktop.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1csxsr2c8qvl97xz9ahwn91z095nzgr0i1mbcb1spljll2sr9lkj"))))
|
"11rwwi6nlhwpcm29dn2mbz0239nfjdwlqlqbchm0j9sr1ypifk2k"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:glib-or-gtk? #t
|
`(#:glib-or-gtk? #t
|
||||||
|
@ -85,13 +85,13 @@ in apps built for the Pantheon desktop.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'disable-schema-cache-generation
|
(add-after 'unpack 'disable-schema-cache-generation
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "DESTDIR" "/")
|
(setenv "DESTDIR" "/"))))))
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("granite" ,granite)
|
(list granite
|
||||||
("glib" ,glib)
|
glib
|
||||||
("gtk" ,gtk+)
|
gtk+
|
||||||
("libgee" ,libgee)))
|
libgee
|
||||||
|
libhandy))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("cmake" ,cmake)
|
`(("cmake" ,cmake)
|
||||||
("glib:bin" ,glib "bin") ; for glib-compile-schemas
|
("glib:bin" ,glib "bin") ; for glib-compile-schemas
|
||||||
|
|
Reference in a new issue