gnu: Add cl-dns-client.

* gnu/packages/lisp-xyz.scm (cl-dns-client, ecl-dns-client,
  sbcl-dns-client): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Sharlatan Hellseher 2023-03-14 23:51:02 +00:00 committed by Guillaume Le Vaillant
parent 37b70cfece
commit 12b2507295
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -5598,6 +5598,41 @@ (define-public cl-chipz
(define-public ecl-chipz
(sbcl-package->ecl-package sbcl-chipz))
(define-public sbcl-dns-client
(let ((commit "9f252e9c2bb61c57a6cd367e21ad366b0d3e87e0")
(revision "0"))
(package
(name "sbcl-dns-client")
(version (git-version "1.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Shinmera/dns-client")
(commit commit)))
(file-name (git-file-name "cl-dns-client" version))
(sha256
(base32 "1b6g2wvydwmv1k68favjyq4gfalfxfyl5i0hyh640wdaz2rfvi4n"))))
(build-system asdf-build-system/sbcl)
(arguments
;; No tests provided.
`(#:tests? #f))
(inputs
(list sbcl-documentation-utils sbcl-usocket))
(home-page "https://shinmera.github.io/dns-client/")
(synopsis "DNS protocol client for Common Lisp")
(description
"This package provides a pure-lisp implementation of a DNS client. It can be
used to resolve hostnames, reverse-lookup IP addresses, and fetch other kinds of
DNS records.")
(license license:zlib))))
(define-public ecl-dns-client
(sbcl-package->ecl-package sbcl-dns-client))
(define-public cl-dns-client
(sbcl-package->cl-source-package sbcl-dns-client))
(define-public sbcl-drakma
(package
(name "sbcl-drakma")