diff options
author | David Craven <david@craven.ch> | 2016-10-29 18:48:28 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-10-29 23:51:43 +0200 |
commit | e751556a14f80d029de8cf579b9344843a57cc03 (patch) | |
tree | f20fe13849ce2586e41a978b959ac4c81fca9b52 | |
parent | ee6cebf6a97d9f0818590cb1841e13b089543d02 (diff) | |
download | patches-e751556a14f80d029de8cf579b9344843a57cc03.tar patches-e751556a14f80d029de8cf579b9344843a57cc03.tar.gz |
gnu: ki18n: Update to 5.27.0.
* gnu/packages/kde-frameworks.scm (ki18n): Update to 5.27.0 and fix
indentation.
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 619479b3bf..1535307dbe 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -596,16 +596,16 @@ interfaces in the areas of colors, fonts, text, images, keyboard input.") (define-public ki18n (package (name "ki18n") - (version "5.24.0") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://kde/stable/frameworks/" - (version-major+minor version) "/" - name "-" version ".tar.xz")) - (sha256 - (base32 - "0cw24spmwsqa3ppkw03cm6yjd3sfll0dbbk2ya76fd4nw9hb00dv")))) + (version "5.27.0") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0a66z325bvdv7g6ysml2bf8559nkjhv2fxwj1ja6vsxkn95d54ff")))) (build-system cmake-build-system) (propagated-inputs `(("gettext" ,gnu-gettext) @@ -618,10 +618,11 @@ interfaces in the areas of colors, fonts, text, images, keyboard input.") ("qtscript" ,qtscript))) (arguments `(#:phases - (modify-phases %standard-phases - (add-before 'check 'check-setup - (lambda* _ - (setenv "HOME" (getcwd))))))) + (modify-phases %standard-phases + (add-before 'check 'check-setup + (lambda _ + (setenv "HOME" (getcwd)) + #t))))) (home-page "https://community.kde.org/Frameworks") (synopsis "KDE Gettext-based UI text internationalization") (description "KI18n provides functionality for internationalizing user |