me
/
guix
Archived
1
0
Fork 0

gnu: whois: Update to 5.5.17.

* gnu/packages/networking.scm (whois): Update to 5.5.17.
[arguments]: Add BASHCOMPDIR to #:configure-flags.
Don't explicitly return #t from phases.
master
Tobias Geerinckx-Rice 2023-07-16 02:00:01 +02:00
parent e74ccdc483
commit bc5e71229d
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 8 additions and 7 deletions

View File

@ -1710,7 +1710,7 @@ and up to 1 Mbit/s downstream.")
(define-public whois
(package
(name "whois")
(version "5.5.11")
(version "5.5.17")
(source
(origin
(method git-fetch)
@ -1719,20 +1719,21 @@ and up to 1 Mbit/s downstream.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0wys0aixzq6mzvg7p6jb0d5rkkg23pjcgcsx86p7hjidxdvnbwzr"))))
(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")))
#: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")
#t)))))
(setenv "HAVE_ICONV" "1"))))))
(inputs
(list libidn2))
(native-inputs