guix-commits
[Top][All Lists]
Advanced

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

02/10: gnu: brlaser: Use G-expressions.


From: guix-commits
Subject: 02/10: gnu: brlaser: Use G-expressions.
Date: Sun, 9 Jul 2023 15:58:16 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit c354a8f15f267008851c7347c1c8376b69c1ddd5
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 2 02:00:02 2023 +0200

    gnu: brlaser: Use G-expressions.
    
    * gnu/packages/cups.scm (brlaser)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/cups.scm | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm
index a6df46d7a6..eede1e1a05 100644
--- a/gnu/packages/cups.scm
+++ b/gnu/packages/cups.scm
@@ -79,13 +79,10 @@
                   "033g461qzwrzi6x24pfasyx9g7fkn5iy5f8c3h8bczg2bvscxyym"))))
       (build-system cmake-build-system)
       (arguments
-       `(#:configure-flags
-         (list (string-append "-DCUPS_DATA_DIR="
-                              (assoc-ref %outputs "out")
-                              "/share/cups")
-               (string-append "-DCUPS_SERVER_BIN="
-                              (assoc-ref %outputs "out")
-                              "/lib/cups"))))
+       (list
+        #:configure-flags
+        #~(list (string-append "-DCUPS_DATA_DIR=" #$output "/share/cups")
+                (string-append "-DCUPS_SERVER_BIN=" #$output "/lib/cups"))))
       (inputs
        (list ghostscript cups zlib))
       (home-page "https://github.com/pdewacht/brlaser";)



reply via email to

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