gnu: go-netns: Fix indentation.

* gnu/packages/networking.scm (go-netns): Fix indentation.

Change-Id: I06a2819e522abfedd8a21820ae14ae1e51f24488
This commit is contained in:
Sharlatan Hellseher 2024-07-25 21:36:56 +01:00
parent f6ed91c640
commit 8e233ea593
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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.