diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-01 17:16:21 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-01 17:52:34 +0200 |
commit | 36a0228eb8a593100a07dbe739cbf212d5612d15 (patch) | |
tree | 8163f1542eba31271312cd3008d566ae60e93eb4 /gnu | |
parent | 77b5498f32e33120308b000d69316a38a78145f5 (diff) |
gnu: ngircd: Update to 26.
* gnu/packages/messaging.scm (ngircd): Update to 26.
[native-inputs]: Add openssl.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/messaging.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 93d25039b0..945257eca1 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -370,20 +370,21 @@ dictionaries. HexChat can be extended with multiple addons.") (define-public ngircd (package (name "ngircd") - (version "25") + (version "26") (source (origin (method url-fetch) (uri (string-append "https://arthur.barton.de/pub/ngircd/ngircd-" version ".tar.xz")) (sha256 (base32 - "0kpf5qi98m9f833r4rx9n6h9p31biwk798jwc1mgzmix7sp7r6f4")) + "1ijmv18fa648y7apxb9vp4j9iq6fxq850kz5v36rysaq614cdp2n")) (patches (search-patches "ngircd-handle-zombies.patch")))) (build-system gnu-build-system) ;; Needed for the test suite. (native-inputs `(("procps" ,procps) ("expect" ,expect) - ("inetutils" ,inetutils))) + ("inetutils" ,inetutils) + ("openssl" ,openssl))) ;; XXX Add libident. (inputs `(("zlib" ,zlib) ("libwrap" ,tcp-wrappers) |