guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: dragon-drop: Use G-Expressions.


From: guix-commits
Subject: 02/02: gnu: dragon-drop: Use G-Expressions.
Date: Wed, 14 Sep 2022 15:03:10 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit cad4b0cc07eef109362b736651f34c14d149c8c5
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Wed Sep 14 21:01:41 2022 +0200

    gnu: dragon-drop: Use G-Expressions.
    
    * gnu/packages/gtk.scm (dragon-drop)[arguments]: Convert to list of
    G-Expressions.
---
 gnu/packages/gtk.scm | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 1ee2a99bf6..606021a7ea 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -2621,14 +2621,13 @@ shell scripts.  Example of how to use @code{yad} can be 
consulted at
    (inputs (list gtk+))
    (native-inputs (list pkg-config))
    (arguments
-    `(#:tests? #f                       ; no check
-      #:make-flags
-      (list (string-append "CC=" ,(cc-for-target))
-            ;; makefile uses PREFIX for the binary location
-            (string-append "PREFIX=" (assoc-ref %outputs "out")))
-      #:phases
-      (modify-phases %standard-phases
-        (delete 'configure))))                    ; no configure script
+    (list
+     #:tests? #f                        ; no check target
+     #:make-flags #~(list (string-append "CC=" #$(cc-for-target))
+                          (string-append "PREFIX=" #$output))
+     #:phases
+     #~(modify-phases %standard-phases
+         (delete 'configure))))         ; no configure script
    (synopsis "Drag and drop source/target for X")
    (description
     "Dragon is a lightweight drag-and-drop source for X where you can run:



reply via email to

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