guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: shishi: Use G-expressions.


From: guix-commits
Subject: 03/03: gnu: shishi: Use G-expressions.
Date: Sun, 7 Aug 2022 09:32:07 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 6757ee9d2bbdc3d064eacfc332d756105521166c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Aug 7 16:20:38 2022 +0300

    gnu: shishi: Use G-expressions.
    
    * gnu/packages/kerberos.scm (shishi)[arguments]: Convert to list of
    G-Expressions.
---
 gnu/packages/kerberos.scm | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/kerberos.scm b/gnu/packages/kerberos.scm
index 8f2bbd1c13..9454a5983e 100644
--- a/gnu/packages/kerberos.scm
+++ b/gnu/packages/kerberos.scm
@@ -132,17 +132,18 @@ cryptography.")
         "14kyj7rdki2g1sj5k42y9v5ya9jar81yw483ivwa80fx2byqyycm"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:configure-flags
-       '("--disable-static"
-         "--with-key-dir=/etc/shishi"
-         "--with-db-dir=/var/shishi")
+     (list
+       #:configure-flags
+       #~(list "--disable-static"
+               "--with-key-dir=/etc/shishi"
+               "--with-db-dir=/var/shishi")
        #:phases
-       (modify-phases %standard-phases
-        (add-after 'configure 'disable-automatic-key-generation
-          (lambda* (#:key outputs #:allow-other-keys)
-            (substitute* "Makefile"
-             (("^install-data-hook:")
-              "install-data-hook:\nx:\n")))))))
+       #~(modify-phases %standard-phases
+           (add-after 'configure 'disable-automatic-key-generation
+             (lambda _
+               (substitute* "Makefile"
+                (("^install-data-hook:")
+                 "install-data-hook:\nx:\n")))))))
     (native-inputs (list pkg-config))
     (inputs
      (list gnutls



reply via email to

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