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 | 62dee732f4666d3cbc013cc748dc1067762e3948 (patch) | |
tree | 849b7000bb07b34d70ac4f4c07013750fa4373bc /gnu/packages/kde-frameworks.scm | |
parent | 01fc411d96764c288c02a483313dc0ac123f3285 (diff) | |
download | guix-62dee732f4666d3cbc013cc748dc1067762e3948.tar guix-62dee732f4666d3cbc013cc748dc1067762e3948.tar.gz |
gnu: kauth: Update to 5.27.0.
* gnu/packages/kde-frameworks.scm (kauth): Update to 5.27.0 and fix
indentation.
Diffstat (limited to 'gnu/packages/kde-frameworks.scm')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 4fc0f2baa4..67db4ab6a0 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1124,16 +1124,16 @@ uses a job-based interface to queue tasks and execute them in an efficient way." (define-public kauth (package (name "kauth") - (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 - "14sjjfgl3arqyqcr77w9qhpnd8mrnh53r5rfss6bvlk26bmihs49")))) + (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 + "17z6dh1qdpd490z84g6ynl8bcrr9naalvh34ybnpipvx3qs50kwl")))) (build-system cmake-build-system) (native-inputs `(("dbus" ,dbus) @@ -1145,11 +1145,11 @@ uses a job-based interface to queue tasks and execute them in an efficient way." ("qtbase" ,qtbase))) (arguments `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* _ - (setenv "DBUS_FATAL_WARNINGS" "0") - (zero? (system* "dbus-launch" "ctest" "."))))))) + (modify-phases %standard-phases + (replace 'check + (lambda _ + (setenv "DBUS_FATAL_WARNINGS" "0") + (zero? (system* "dbus-launch" "ctest" "."))))))) (home-page "https://community.kde.org/Frameworks") (synopsis "Execute actions as privileged user") (description "KAuth provides a convenient, system-integrated way to offload |