guix-commits
[Top][All Lists]
Advanced

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

18/46: gnu: httping: Use G-expressions.


From: guix-commits
Subject: 18/46: gnu: httping: Use G-expressions.
Date: Fri, 16 Dec 2022 21:38:57 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 56a0cb50e1e89b27c441e3287436d6ab49011c11
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Dec 11 01:00:01 2022 +0100

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

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 77284c05e1..f85d1e6fc0 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1967,9 +1967,10 @@ transmission protocol (SCTP) in a Go application.")
          "1y7sbgkhgadmd93x1zafqc4yp26ssiv16ni5bbi9vmvvdl55m29y"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:make-flags (list ,(string-append "CC=" (cc-for-target))
-                          (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:tests? #f)) ; no tests
+     (list #:make-flags
+           #~(list (string-append "CC=" #$(cc-for-target))
+                   (string-append "PREFIX=" #$output))
+           #:tests? #f))                ; no test suite
     (native-inputs
      (list gettext-minimal))
     (inputs



reply via email to

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