1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-08 06:00:36 +02:00

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

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)