guix-commits
[Top][All Lists]
Advanced

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

14/19: gnu: feh: Use G-expressions.


From: guix-commits
Subject: 14/19: gnu: feh: Use G-expressions.
Date: Wed, 20 Jul 2022 06:42:32 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit a432ae0c0b3e3237c82a84f03ef022ddadafedcd
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 17 02:00:01 2022 +0200

    gnu: feh: Use G-expressions.
    
    * gnu/packages/image-viewers.scm (feh)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/image-viewers.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm
index 53c895ec21..8d4d2351c3 100644
--- a/gnu/packages/image-viewers.scm
+++ b/gnu/packages/image-viewers.scm
@@ -173,14 +173,16 @@ YouTube videos without requiring API and opens/downloads 
them using mpv/ytdl.")
                 "185wwqd60r2rk6lzcvd6sl58589qfqrfnf7lqd6friyj84n9cjc6"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:phases (modify-phases %standard-phases (delete 'configure))
-       #:test-target "test"
-       #:make-flags
-       (list ,(string-append "CC=" (cc-for-target))
-             (string-append "PREFIX=" (assoc-ref %outputs "out"))
-             "exif=1"
-             "inotify=1"
-             "magic=1")))
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (delete 'configure))     ; no configure script
+           #:test-target "test"
+           #:make-flags
+           #~(list (string-append "CC=" #$(cc-for-target))
+                   (string-append "PREFIX=" #$output)
+                   "exif=1"
+                   "inotify=1"
+                   "magic=1")))
     (native-inputs
      (list perl perl-test-command))
     (inputs (list curl



reply via email to

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