diff options
author | Jack Hill <jackhill@jackhill.us> | 2021-06-11 15:02:18 -0400 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-06-12 22:58:10 +0200 |
commit | b736334732eccbad9f4f5aa1f8bf143dd12e4c05 (patch) | |
tree | 2d6ff307dd3112cdbfda94fa6e642f44c08616e2 /gnu | |
parent | ea1778ebd45ca6a9c44c27c82d29848eaa4ad6ef (diff) | |
download | guix-b736334732eccbad9f4f5aa1f8bf143dd12e4c05.tar.gz guix-b736334732eccbad9f4f5aa1f8bf143dd12e4c05.zip |
gnu: qalculate-gtk: Update to 3.19.0.
* gnu/packages/maths.scm (qalculate-gtk): Update to 3.19.0.
[phases]: Remove 'add-pot-file.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/maths.scm | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index f6658971da..90c1bb7721 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -6212,7 +6212,7 @@ cli.") (define-public qalculate-gtk (package (name "qalculate-gtk") - (version "3.8.0") + (version "3.19.0") (source (origin (method git-fetch) @@ -6221,7 +6221,7 @@ cli.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0nsg6dzg5r7rzqr671nvrf1c50rjwpz7bxv5f20i4s7agizgv840")))) + (base32 "1nrx7gp6f1yalbdda1gb97azhbr4xclq2xf08vvbvsk8jfd6fd2v")))) (build-system glib-or-gtk-build-system) (native-inputs `(("pkg-config" ,pkg-config) @@ -6245,15 +6245,6 @@ cli.") ;; script, which has not yet been patched to replace /bin/sh. (lambda _ (setenv "NOCONFIGURE" "TRUE") - #t)) - (add-before 'check 'add-pot-file - ;; the file contains translations and are currently not in use - ;; left out on purpose so add it to POTFILES.skip - (lambda _ - (with-output-to-file "po/POTFILES.skip" - (lambda _ - (format #t "data/shortcuts.ui~%") - #t)) #t))))) (home-page "https://qalculate.github.io/") (synopsis "Multi-purpose graphical desktop calculator") |