diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-07-21 10:22:52 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-01 16:08:16 +0200 |
commit | db2e80db1ca16ebe7c88ae8aecd6d2bad51362dc (patch) | |
tree | 3314f8fe9e3918bf5bcaca3c001af5ffa0d90411 /gnu | |
parent | e63a0ef8af79b1315464e593a509985213216a0a (diff) | |
download | guix-db2e80db1ca16ebe7c88ae8aecd6d2bad51362dc.tar.gz |
gnu: KDE: Remove trailing booleans.
* gnu/packages/kde.scm (akregator, kdevelop)[arguments]: Remove trailing booleans. Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index 5045d1b621..3fb42f8026 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -173,8 +173,7 @@ This package contains GUI widgets for baloo.") (assoc-ref inputs "qtwebengine-5") "/lib/qt5/libexec/QtWebEngineProcess"))) (wrap-program bin - `("QTWEBENGINEPROCESS_PATH" = (,qt-process-path))) - #t)))))) + `("QTWEBENGINEPROCESS_PATH" = (,qt-process-path))))))))) (native-inputs (list extra-cmake-modules kdoctools)) (inputs @@ -383,8 +382,7 @@ projects.") (lambda* (#:key inputs #:allow-other-keys) (substitute* "cmake/modules/FindClang.cmake" (("^\\s*PATHS \"\\$\\{CLANG_LIBRARY_DIRS\\}\"" line) - (string-append line " " (assoc-ref inputs "clang") "/lib"))) - #t))))) + (string-append line " " (assoc-ref inputs "clang") "/lib")))))))) (home-page "https://kdevelop.org") (synopsis "IDE for C, C++, Python, Javascript and PHP") (description "The KDevelop IDE provides semantic syntax highlighting, as |