diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
commit | 8c3e9da13a3c92a7db308db8c0d81cb474ad7799 (patch) | |
tree | 88d06952aa5cc3a9c4991d9c43eb7950ff174fe1 /gnu/packages/pantheon.scm | |
parent | 5439c04ebdb7b6405f5ea2446b375f1d155a8d95 (diff) | |
parent | 0c5299200ffcd16370f047b7ccb187c60f30da34 (diff) | |
download | guix-8c3e9da13a3c92a7db308db8c0d81cb474ad7799.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/pantheon.scm')
-rw-r--r-- | gnu/packages/pantheon.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/pantheon.scm b/gnu/packages/pantheon.scm index 756db94144..acb19a3ef8 100644 --- a/gnu/packages/pantheon.scm +++ b/gnu/packages/pantheon.scm @@ -67,7 +67,7 @@ in apps built for the Pantheon desktop.") (define-public pantheon-calculator (package (name "pantheon-calculator") - (version "1.5.5") + (version "1.7.2") (source (origin (method git-fetch) @@ -77,7 +77,7 @@ in apps built for the Pantheon desktop.") (file-name (git-file-name name version)) (sha256 (base32 - "1csxsr2c8qvl97xz9ahwn91z095nzgr0i1mbcb1spljll2sr9lkj")))) + "11rwwi6nlhwpcm29dn2mbz0239nfjdwlqlqbchm0j9sr1ypifk2k")))) (build-system meson-build-system) (arguments `(#:glib-or-gtk? #t @@ -85,13 +85,13 @@ in apps built for the Pantheon desktop.") (modify-phases %standard-phases (add-after 'unpack 'disable-schema-cache-generation (lambda _ - (setenv "DESTDIR" "/") - #t))))) + (setenv "DESTDIR" "/")))))) (inputs - `(("granite" ,granite) - ("glib" ,glib) - ("gtk" ,gtk+) - ("libgee" ,libgee))) + (list granite + glib + gtk+ + libgee + libhandy)) (native-inputs `(("cmake" ,cmake) ("glib:bin" ,glib "bin") ; for glib-compile-schemas |