summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-12-03 09:30:25 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-01-21 23:41:48 +0000
commitf163cc45e692df1f36d1bff693192af7535b71a0 (patch)
tree2d3352d378173e39677401b3e2cd5dc428c6e3db /gnu/packages
parentca800541dd24c3903f7e10ed5aaa98e839d505a7 (diff)
gnu: go-github-com-vishvananda-netns: Move to golang-web.
* gnu/packages/networking.scm (go-github-com-vishvananda-netns): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: I61f01af0f6c57d6e079226cfaa01560e38e4d06e
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/golang-web.scm28
-rw-r--r--gnu/packages/networking.scm28
2 files changed, 28 insertions, 28 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 81f3185df2d..75065740ab9 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5914,6 +5914,34 @@ kernel. It can be used to add and remove interfaces, set IP addresses and
5914routes, and configure IPsec.") 5914routes, and configure IPsec.")
5915 (license license:asl2.0))) 5915 (license license:asl2.0)))
5916 5916
5917(define-public go-github-com-vishvananda-netns
5918 (package
5919 (name "go-github-com-vishvananda-netns")
5920 (version "0.0.5")
5921 (source
5922 (origin
5923 (method git-fetch)
5924 (uri (git-reference
5925 (url "https://github.com/vishvananda/netns")
5926 (commit (string-append "v" version))))
5927 (file-name (git-file-name name version))
5928 (sha256
5929 (base32 "1f96fbmjq93msdfxmicnypnn2lzvi7jrxy82fiyd9gwxdapfd061"))))
5930 (build-system go-build-system)
5931 (arguments
5932 (list
5933 ;; Tests fail with error: operation not permitted.
5934 #:test-flags #~(list "-skip" "TestGetNewSetDelete|TestThreaded")
5935 #:import-path "github.com/vishvananda/netns"))
5936 (propagated-inputs
5937 (list go-golang-org-x-sys))
5938 (home-page "https://github.com/vishvananda/netns")
5939 (synopsis "Simple network namespace handling for Go")
5940 (description
5941 "The netns package provides a simple interface for handling network
5942namespaces in Go.")
5943 (license license:asl2.0)))
5944
5917(define-public go-github-com-whyrusleeping-cbor 5945(define-public go-github-com-whyrusleeping-cbor
5918 (package 5946 (package
5919 (name "go-github-com-whyrusleeping-cbor") 5947 (name "go-github-com-whyrusleeping-cbor")
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 2db089f2616..02e1d08e25e 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -1951,34 +1951,6 @@ manage, and delete Internet resources from Gandi.net such as domain names,
1951virtual machines, and certificates.") 1951virtual machines, and certificates.")
1952 (license license:gpl3+))) 1952 (license license:gpl3+)))
1953 1953
1954(define-public go-github-com-vishvananda-netns
1955 (package
1956 (name "go-github-com-vishvananda-netns")
1957 (version "0.0.5")
1958 (source
1959 (origin
1960 (method git-fetch)
1961 (uri (git-reference
1962 (url "https://github.com/vishvananda/netns")
1963 (commit (string-append "v" version))))
1964 (file-name (git-file-name name version))
1965 (sha256
1966 (base32 "1f96fbmjq93msdfxmicnypnn2lzvi7jrxy82fiyd9gwxdapfd061"))))
1967 (build-system go-build-system)
1968 (arguments
1969 (list
1970 ;; Tests fail with error: operation not permitted.
1971 #:test-flags #~(list "-skip" "TestGetNewSetDelete|TestThreaded")
1972 #:import-path "github.com/vishvananda/netns"))
1973 (propagated-inputs
1974 (list go-golang-org-x-sys))
1975 (home-page "https://github.com/vishvananda/netns")
1976 (synopsis "Simple network namespace handling for Go")
1977 (description
1978 "The netns package provides a simple interface for handling network
1979namespaces in Go.")
1980 (license license:asl2.0)))
1981
1982(define-public go-sctp 1954(define-public go-sctp
1983 ;; docker-libnetwork-cmd-proxy requires this exact commit. 1955 ;; docker-libnetwork-cmd-proxy requires this exact commit.
1984 ;; This commit is mentioned in docker-libnetwork-cmd-proxy's vendor.conf. 1956 ;; This commit is mentioned in docker-libnetwork-cmd-proxy's vendor.conf.