me
/
guix
Archived
1
0
Fork 0

gnu: whois: Use G-expressions.

* gnu/packages/networking.scm (whois)[arguments]:
Rewrite as G-expressions.
master
Tobias Geerinckx-Rice 2023-07-16 02:00:01 +02:00
parent c212bdf64f
commit 7595a07da5
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 13 additions and 12 deletions

View File

@ -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