guix-commits
[Top][All Lists]
Advanced

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

08/16: gnu: signify: Use G-expressions.


From: guix-commits
Subject: 08/16: gnu: signify: Use G-expressions.
Date: Sat, 15 Jul 2023 18:15:07 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 920d12624ff1933c08dd6059a67fd07380a0bb4f
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 9 02:00:01 2023 +0200

    gnu: signify: Use G-expressions.
    
    * gnu/packages/crypto.scm (signify)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/crypto.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 9fa82c8a6a..ea8d201b5d 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -229,12 +229,13 @@ communication, encryption, decryption, signatures, etc.")
     ;; TODO Build with libwaive (described in README.md), to implement 
something
     ;; like OpenBSD's pledge().
     (arguments
-     `(#:make-flags
-       (list ,(string-append "CC=" (cc-for-target))
-             (string-append "PREFIX=" (assoc-ref %outputs "out")))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure))))
+     (list
+      #:make-flags
+      #~(list (string-append "CC=" #$(cc-for-target))
+              (string-append "PREFIX=" #$output))
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure))))
     (native-inputs
      (list pkg-config))
     (inputs



reply via email to

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