Archived
1
0
Fork 0

gnu: Add go-madns.

* gnu/packages/golang-web.scm (go-madns): New variable.

Change-Id: I95916b9c41c6777974c5c970234934d8ae362c86
This commit is contained in:
Sharlatan Hellseher 2024-04-24 14:37:16 +01:00
parent a9f083f10e
commit 3ddf722de3
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1988,6 +1988,20 @@ Encryption, JSON Web Signature, and JSON Web Token standards.")
;;; Executables:
;;;
(define-public go-madns
(package
(inherit go-github-com-multiformats-go-multiaddr-dns)
(name "go-madns")
(arguments
(substitute-keyword-arguments
(package-arguments go-github-com-multiformats-go-multiaddr-dns)
((#:install-source? _ #t) #f)
((#:import-path _ "github.com/multiformats/go-multiaddr-dns")
"github.com/multiformats/go-multiaddr-dns/madns")))
(description
"This package provides a CLI binary executible built from
go-github-com-multiformats-go-multiaddr-dns.")))
(define-public go-minify
(package
(inherit go-github-com-tdewolff-minify-v2)