summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-web.scm
diff options
context:
space:
mode:
authorEvgeny Pisemsky <mail@pisemsky.site>2026-08-30 17:10:38 +0300
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-09-01 23:09:35 +0100
commit50781d767a143ad80e322287feb4416c0a00a902 (patch)
treeaf223e9722e376cf448257f61bb39d2b6e126593 /gnu/packages/golang-web.scm
parentfd8aad31a88025b1d73df5a4ac5f1272efdfaaf2 (diff)
gnu: Add go-github-com-sagernet-sing.
* gnu/packages/golang-web.scm (go-github-com-sagernet-sing): New variable. Relates-to: guix/guix!10749 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r--gnu/packages/golang-web.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index c72b9847207..499e67b5d06 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -18653,6 +18653,35 @@ information from a network device such as statistics, driver related
18653information or even the peer of a VETH interface.") 18653information or even the peer of a VETH interface.")
18654 (license license:asl2.0))) 18654 (license license:asl2.0)))
18655 18655
18656(define-public go-github-com-sagernet-sing
18657 (package
18658 (name "go-github-com-sagernet-sing")
18659 (version "0.8.4")
18660 (source
18661 (origin
18662 (method git-fetch)
18663 (uri (git-reference
18664 (url "https://github.com/SagerNet/sing")
18665 (commit (string-append "v" version))))
18666 (file-name (git-file-name name version))
18667 (sha256
18668 (base32 "0lc65fl58kh4g2r66yx141k3w1qnc1x76aq8wkg0gym6qdk2nzwg"))))
18669 (build-system go-build-system)
18670 (arguments
18671 (list
18672 #:skip-build? #t
18673 #:import-path "github.com/sagernet/sing"))
18674 (native-inputs
18675 (list go-github-com-stretchr-testify))
18676 (propagated-inputs
18677 (list go-golang-org-x-sys))
18678 (home-page "https://github.com/sagernet/sing")
18679 (synopsis "Proxy platform core library")
18680 (description
18681 "This package provides a core functionality for a universal proxy
18682platform.")
18683 (license license:gpl3+)))
18684
18656(define-public go-github-com-santhosh-tekuri-jsonschema-v5 18685(define-public go-github-com-santhosh-tekuri-jsonschema-v5
18657 (package 18686 (package
18658 (name "go-github-com-santhosh-tekuri-jsonschema-v5") 18687 (name "go-github-com-santhosh-tekuri-jsonschema-v5")