1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-20 01:00:30 +02:00

gnu: Add go-github-com-theodorsm-covert-dtls.

* gnu/packages/golang-web.scm (go-github-com-theodorsm-covert-dtls): New variable.

Change-Id: If61992941874fd8af75810c9c5e821ea9066b03d
This commit is contained in:
Sharlatan Hellseher
2026-02-16 22:13:11 +00:00
parent 81d0659535
commit 60e31b571c

View File

@@ -14485,6 +14485,37 @@ runtime. It has zero dependencies, and doesn't rely on CGO. This means you
can run applications in other languages and still keep cross compilation.")
(license license:asl2.0)))
(define-public go-github-com-theodorsm-covert-dtls
(package
(name "go-github-com-theodorsm-covert-dtls")
(version "1.4.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/theodorsm/covert-dtls")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1sv239ij3938mw55i2a3nnj8h4sy18rbkxn3vz4mypli5v6rai28"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t ;XXX: libpcap
#:tests? #f
#:import-path "github.com/theodorsm/covert-dtls"))
(propagated-inputs
(list go-github-com-google-gopacket
go-github-com-pion-dtls-v3))
(home-page "https://github.com/theodorsm/covert-dtls")
(synopsis "Fingerprint-resistance module for pion/dtls")
(description
"@code{covertDTLS} is a library inspired by
@@url{https://github.com/refraction-networking/utls, @code{uTLS}} for offering
fingerprint-resistance features to @url{https://github.com/pion/dtls,
pion/dtls}.")
(license license:expat)))
(define-public go-github-com-things-go-go-socks5
(package
(name "go-github-com-things-go-go-socks5")