guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/09: gnu: ola: Use gexps.


From: guix-commits
Subject: 08/09: gnu: ola: Use gexps.
Date: Tue, 27 Dec 2022 17:54:37 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 361aad5ce33afeefa269533c33141fc77f74837c
Author: Simon South <simon@simonsouth.net>
AuthorDate: Sun Dec 18 13:46:56 2022 -0500

    gnu: ola: Use gexps.
    
    * gnu/packages/lighting.scm (ola)[arguments]: Use gexps.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/lighting.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/lighting.scm b/gnu/packages/lighting.scm
index d0ad825d10..6230963a4b 100644
--- a/gnu/packages/lighting.scm
+++ b/gnu/packages/lighting.scm
@@ -19,6 +19,7 @@
 
 (define-module (gnu packages lighting)
   #:use-module (guix build-system gnu)
+  #:use-module (guix gexp)
   #:use-module (guix git-download)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
@@ -67,10 +68,11 @@
     (propagated-inputs
      (list protobuf))       ; for pkg-config --libs libola
     (arguments
-     `( ;; G++ >= 4.8 macro expansion tracking requires lots of memory, causing
-       ;; build to fail on low memory systems.  We disable that with the
-       ;; following configure flags.
-       #:configure-flags (list "CXXFLAGS=-ftrack-macro-expansion=0")))
+     (list
+      ;; G++ >= 4.8 macro expansion tracking requires lots of memory, causing
+      ;; build to fail on low memory systems.  We disable that with the
+      ;; following configure flags.
+      #:configure-flags #~(list "CXXFLAGS=-ftrack-macro-expansion=0")))
     (synopsis "Framework for controlling entertainment lighting equipment")
     (description "The Open Lighting Architecture is a framework for lighting
 control information.  It supports a range of protocols and over a dozen USB



reply via email to

[Prev in Thread] Current Thread [Next in Thread]