guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 6d5339916e581036e87806b32115bcec630b1d4c
Author: Cayetano Santos <[email protected]>
AuthorDate: Fri Feb 27 15:40:41 2026 +0100

    gnu: conky: Refresh package.
    
    * gnu/packages/monitoring.scm (conky)[arguments]: Use G-Expressions.
    
    Merges guix/guix!6738
    
    Change-Id: I44ded1eda2b19b3474ac839021f8052145627b6d
---
 gnu/packages/monitoring.scm | 39 ++++++++++++++++++---------------------
 1 file changed, 18 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm
index c5ddaa67c9..61d017f1c3 100644
--- a/gnu/packages/monitoring.scm
+++ b/gnu/packages/monitoring.scm
@@ -370,27 +370,24 @@ retrieval of all your quantified self data.")
         (base32 "1g712cw2nzd2qvgdmyvazyda0znyqzg6yckg98ss203fggwp93vj"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:configure-flags
-       (list "-DRELEASE=true"
-             "-DBUILD_PULSEAUDIO=ON"
-             "-DBUILD_WLAN=ON"
-             "-DBUILD_TESTS=ON")
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'add-freetype-to-search-path
-           (lambda* (#:key inputs #:allow-other-keys)
-             (substitute* "cmake/ConkyPlatformChecks.cmake"
-               (("set\\(INCLUDE_SEARCH_PATH")
-                (string-append
-                 "set(INCLUDE_SEARCH_PATH "
-                 (assoc-ref inputs "freetype") "/include/freetype2 ")))
-             #t))
-         (replace 'install
-           (lambda* (#:key outputs #:allow-other-keys)
-             (let* ((out (assoc-ref outputs "out"))
-                    (bin (string-append out "/bin")))
-               (install-file "src/conky" bin))
-             #t)))))
+     (list
+      #:configure-flags
+      #~(list "-DRELEASE=true"
+              "-DBUILD_PULSEAUDIO=ON"
+              "-DBUILD_WLAN=ON"
+              "-DBUILD_TESTS=ON")
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'add-freetype-to-search-path
+            (lambda* (#:key inputs #:allow-other-keys)
+              (substitute* "cmake/ConkyPlatformChecks.cmake"
+                (("set\\(INCLUDE_SEARCH_PATH")
+                 (string-append
+                  "set(INCLUDE_SEARCH_PATH "
+                  (assoc-ref inputs "freetype") "/include/freetype2 ")))))
+          (replace 'install
+            (lambda _
+              (install-file "src/conky" (string-append #$output "/bin")))))))
     (inputs
      (list freetype
            imlib2

Reply via email to