[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/34: gnu: whois: Use G-expressions.
From: |
guix-commits |
Subject: |
07/34: gnu: whois: Use G-expressions. |
Date: |
Tue, 18 Jul 2023 21:11:56 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 7595a07da5583bb33e7fb1290620d045929110c4
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 16 02:00:01 2023 +0200
gnu: whois: Use G-expressions.
* gnu/packages/networking.scm (whois)[arguments]:
Rewrite as G-expressions.
---
gnu/packages/networking.scm | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 752d706797..93eb8cae85 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1722,18 +1722,19 @@ and up to 1 Mbit/s downstream.")
(base32 "1mqgc8saz4l0hr4p8r9cgndwx3r9aal7ak9irgrrkxyjd65xpa9n"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ; no test suite
- #:make-flags
- (list (string-append "CC=" ,(cc-for-target))
- (string-append "PKG_CONFIG=" ,(pkg-config-for-target))
- (string-append "prefix=" (assoc-ref %outputs "out"))
- "BASHCOMPDIR=$(prefix)/share/bash-completion/completions")
- #:phases
- (modify-phases %standard-phases
- (delete 'configure) ; no configure script
- (add-before 'build 'setenv
- (lambda _
- (setenv "HAVE_ICONV" "1"))))))
+ (list
+ #:tests? #f ; no test suite
+ #:make-flags
+ #~(list (string-append "CC=" #$(cc-for-target))
+ (string-append "PKG_CONFIG=" #$(pkg-config-for-target))
+ (string-append "prefix=" #$output)
+ "BASHCOMPDIR=$(prefix)/share/bash-completion/completions")
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure) ; no configure script
+ (add-before 'build 'setenv
+ (lambda _
+ (setenv "HAVE_ICONV" "1"))))))
(inputs
(list libidn2))
(native-inputs
- branch master updated (c75022d65f -> 13cb9b3028), guix-commits, 2023/07/18
- 01/34: gnu: hw-probe: Fix build., guix-commits, 2023/07/18
- 04/34: gnu: evince: Update to 44.3., guix-commits, 2023/07/18
- 05/34: gnu: whois: Update to 5.5.17., guix-commits, 2023/07/18
- 03/34: gnu: evince: Parameterise source URI., guix-commits, 2023/07/18
- 07/34: gnu: whois: Use G-expressions.,
guix-commits <=
- 11/34: gnu: iperf: Update to 3.14., guix-commits, 2023/07/18
- 02/34: gnu: xtensor: Update to 0.24.6., guix-commits, 2023/07/18
- 06/34: gnu: whois: Remove input labels., guix-commits, 2023/07/18
- 08/34: gnu: ntp: Update to 4.2.8p17., guix-commits, 2023/07/18
- 09/34: gnu: ntp: Remove input labels., guix-commits, 2023/07/18
- 12/34: gnu: spiped: Update to 1.6.2., guix-commits, 2023/07/18
- 10/34: gnu: ntp: Use G-expressions., guix-commits, 2023/07/18
- 13/34: gnu: spiped: Use G-expressions., guix-commits, 2023/07/18
- 15/34: gnu: traceroute: Use G-expressions., guix-commits, 2023/07/18
- 19/34: gnu: liblxi: Update to 1.20., guix-commits, 2023/07/18