mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 02:19:18 -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+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public go-netns
|
(define-public go-netns
|
||||||
(package
|
(package
|
||||||
(name "go-netns")
|
(name "go-netns")
|
||||||
(version "0.0.4")
|
(version "0.0.4")
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/vishvananda/netns")
|
(uri (git-reference
|
||||||
(commit (string-append "v" version))))
|
(url "https://github.com/vishvananda/netns")
|
||||||
(file-name (git-file-name name version))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"0rci8c211m57nya9il81fz6459pia3dj5i4b16fp34vjrkcxliml"))))
|
(base32 "0rci8c211m57nya9il81fz6459pia3dj5i4b16fp34vjrkcxliml"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "github.com/vishvananda/netns"
|
`(#:import-path "github.com/vishvananda/netns"
|
||||||
#:tests? #f)) ;tests require root privileges
|
#:tests? #f)) ;tests require root privileges
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list go-golang-org-x-sys))
|
(list go-golang-org-x-sys))
|
||||||
(home-page "https://github.com/vishvananda/netns")
|
(home-page "https://github.com/vishvananda/netns")
|
||||||
(synopsis "Simple network namespace handling for Go")
|
(synopsis "Simple network namespace handling for Go")
|
||||||
(description "The netns package provides a simple interface for
|
(description
|
||||||
handling network namespaces in Go.")
|
"The netns package provides a simple interface for handling network
|
||||||
(license license:asl2.0)))
|
namespaces in Go.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-sctp
|
(define-public go-sctp
|
||||||
;; docker-libnetwork-cmd-proxy requires this exact commit.
|
;; docker-libnetwork-cmd-proxy requires this exact commit.
|
||||||
|
|
Loading…
Reference in a new issue