summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Norton <patrick.147.norton@gmail.com>2026-01-06 09:08:07 -0500
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-04-30 21:34:00 +0100
commitfb2f32214b3e32594a56fa3c9ef2cdb6773ede4c (patch)
tree9123e62c9f8aaabcf0ef310ced0f0b719cb7c7d6
parent6c90f78eac8b31b6dda5d2fc2e728a1b34321b44 (diff)
gnu: Add go-github-com-tailscale-goupnp.
* gnu/packages/golang-xyz.scm (go-github-com-tailscale-goupnp): New variable. Relates-to: https://codeberg.org/guix/guix/pulls/5417 Change-Id: Id86295a4808dd156b75711ba8f489faeb126c28c Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-web.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index eb7240fb26..7e36015860 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -17903,6 +17903,36 @@ Features:
Expect implementation in Golang.")
(license license:bsd-3)))
+(define-public go-github-com-tailscale-goupnp
+ (package
+ (name "go-github-com-tailscale-goupnp")
+ (version "1.0.1-0.20210804011211-c64d0f06ea05")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tailscale/goupnp")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "10nkgf29jwg8qp2lkxgnh3cf2jiwjc2pbga03rdkmhiyhrqhj4rx"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:test-flags
+ #~(list "-vet=off") ;Malformed example suffix
+ #:import-path "github.com/tailscale/goupnp"))
+ (propagated-inputs
+ (list go-github-com-huin-goupnp
+ go-github-com-huin-goutil
+ go-golang-org-x-net))
+ (home-page "https://github.com/tailscale/goupnp")
+ (synopsis "UPnP client in Go")
+ (description
+ "This package is an implementation of a client for various @code{UPnP}
+services. It's an alternative fork of @url{https://github.com/huin/goupnp}.")
+ (license license:bsd-2)))
+
(define-public go-github-com-tdewolff-minify-v2
(package
(name "go-github-com-tdewolff-minify-v2")