gnu: Add guile-irc.

* gnu/packages/guile-xyz.scm (guile-irc): New variable.
This commit is contained in:
Ricardo Wurmus 2020-03-17 13:22:01 +01:00
parent db9b616110
commit 3c0456c6b5
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3201,3 +3201,35 @@ (define-public guile-torrent
@code{.torrent} or metainfo files. Implements a bencode reader and writer
according to Bitorrent BEP003.")
(license license:gpl3+)))
(define-public guile-irc
(let ((commit "375d3bde9c6ae7ccc9d7cc65817966b6fda8f26a")
(revision "0"))
(package
(name "guile-irc")
(version (git-version "0.3.0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rekado/guile-irc.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"113lcckcywrz9060w1c3fnvr8d7crdsjgsv4h47hgmr1slgadl4y"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags '("--enable-gnutls=yes")))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
("texinfo" ,texinfo)))
(inputs
`(("gnutls" ,gnutls)
("guile" ,guile-2.2)))
(home-page "https://github.com/rekado/guile-irc")
(synopsis "IRC library for Guile")
(description "This package provides a Guile library for @dfn{Internet
Relay Chat} (IRC).")
;; Some file headers incorrectly say LGPLv2+.
(license license:lgpl2.1+))))