gnu: ngircd: Update to 26.

* gnu/packages/messaging.scm (ngircd): Update to 26.
[native-inputs]: Add openssl.
This commit is contained in:
Tobias Geerinckx-Rice 2020-07-01 17:16:21 +02:00
parent 77b5498f32
commit 36a0228eb8
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -370,20 +370,21 @@ (define-public hexchat
(define-public ngircd (define-public ngircd
(package (package
(name "ngircd") (name "ngircd")
(version "25") (version "26")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://arthur.barton.de/pub/ngircd/ngircd-" (uri (string-append "https://arthur.barton.de/pub/ngircd/ngircd-"
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0kpf5qi98m9f833r4rx9n6h9p31biwk798jwc1mgzmix7sp7r6f4")) "1ijmv18fa648y7apxb9vp4j9iq6fxq850kz5v36rysaq614cdp2n"))
(patches (search-patches "ngircd-handle-zombies.patch")))) (patches (search-patches "ngircd-handle-zombies.patch"))))
(build-system gnu-build-system) (build-system gnu-build-system)
;; Needed for the test suite. ;; Needed for the test suite.
(native-inputs `(("procps" ,procps) (native-inputs `(("procps" ,procps)
("expect" ,expect) ("expect" ,expect)
("inetutils" ,inetutils))) ("inetutils" ,inetutils)
("openssl" ,openssl)))
;; XXX Add libident. ;; XXX Add libident.
(inputs `(("zlib" ,zlib) (inputs `(("zlib" ,zlib)
("libwrap" ,tcp-wrappers) ("libwrap" ,tcp-wrappers)