diff options
author | Hartmut Goebel <[email protected]> | 2017-10-23 13:17:30 +0200 |
---|---|---|
committer | Hartmut Goebel <[email protected]> | 2019-01-04 10:10:38 +0100 |
commit | fd8c53cb9eaa876d4006a5f0a3096d20d38a064c (patch) | |
tree | 7d2b82adbdb4917348905575a18d047394bd0cde /gnu/packages | |
parent | b824dbec5d331e79a50734fb543bbe064eb7fc17 (diff) |
gnu: kcmutils: Make QDirIterator follow symlinks.
Transfer the NixOS patch "kcmutils-follow-symlinks" for kcmutils as of
2018-02-17.
* gnu/packages/kde-frameworks.scm(kcmutils)<patch>: New phase.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index caf846bba9..60f9eeb037 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Andreas Enge <[email protected]> ;;; Copyright © 2016 Efraim Flashner <[email protected]> -;;; Copyright © 2016,2017 Hartmut Goebel <[email protected]> +;;; Copyright © 2016,2017,2018 Hartmut Goebel <[email protected]> ;;; Copyright © 2016 David Craven <[email protected]> ;;; Copyright © 2017 Thomas Danckaert <[email protected]> ;;; Copyright © 2018 Tobias Geerinckx-Rice <[email protected]> @@ -2088,6 +2088,16 @@ using the XBEL format.") ("kservice" ,kservice))) (native-inputs `(("extra-cmake-modules" ,extra-cmake-modules))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch + (lambda _ + (substitute* "src/kpluginselector.cpp" + ;; make QDirIterator follow symlinks + (("^\\s*(QDirIterator it\\(.*, QDirIterator::Subdirectories)(\\);)" _ a b) + (string-append a " | QDirIterator::FollowSymlinks" b))) + #t))))) (inputs `(("kauth" ,kauth) ("kcodecs" ,kcodecs) |