mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: go-netns: Fix indentation.
* gnu/packages/networking.scm (go-netns): Fix indentation. Change-Id: I06a2819e522abfedd8a21820ae14ae1e51f24488
This commit is contained in:
parent
f6ed91c640
commit
8e233ea593
1 changed files with 24 additions and 23 deletions
|
@ -1918,29 +1918,30 @@ (define-public gandi.cli
|
|||
(license license:gpl3+)))
|
||||
|
||||
(define-public go-netns
|
||||
(package
|
||||
(name "go-netns")
|
||||
(version "0.0.4")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/vishvananda/netns")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0rci8c211m57nya9il81fz6459pia3dj5i4b16fp34vjrkcxliml"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/vishvananda/netns"
|
||||
#:tests? #f)) ;tests require root privileges
|
||||
(propagated-inputs
|
||||
(list go-golang-org-x-sys))
|
||||
(home-page "https://github.com/vishvananda/netns")
|
||||
(synopsis "Simple network namespace handling for Go")
|
||||
(description "The netns package provides a simple interface for
|
||||
handling network namespaces in Go.")
|
||||
(license license:asl2.0)))
|
||||
(package
|
||||
(name "go-netns")
|
||||
(version "0.0.4")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/vishvananda/netns")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0rci8c211m57nya9il81fz6459pia3dj5i4b16fp34vjrkcxliml"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/vishvananda/netns"
|
||||
#:tests? #f)) ;tests require root privileges
|
||||
(propagated-inputs
|
||||
(list go-golang-org-x-sys))
|
||||
(home-page "https://github.com/vishvananda/netns")
|
||||
(synopsis "Simple network namespace handling for Go")
|
||||
(description
|
||||
"The netns package provides a simple interface for handling network
|
||||
namespaces in Go.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-sctp
|
||||
;; docker-libnetwork-cmd-proxy requires this exact commit.
|
||||
|
|
Loading…
Reference in a new issue