summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-07-27 09:33:28 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-07-27 09:33:28 +0100
commitae08b8ab05264f4710405429d533a005d2fe8697 (patch)
treecde773cb9669496319904e97590caa9208d03dbd /gnu/packages
parent1dd90ea87011e845e28b91d838104bbbc0eb4451 (diff)
gnu: docker-libnetwork-cmd-proxy: Improve package style.
* gnu/packages/docker.scm (docker-libnetwork-cmd-proxy): Improve package style. Fix indentation. [arguments]: Apply list style, adjust order of the keys. [native-inputs]: Remove labels. [description]: Adjust it, place on a new line. Change-Id: I0cb59a3d9306291e4101f6c6d2e681ffd319ba9f
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/docker.scm31
1 files changed, 15 insertions, 16 deletions
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm
index c713466f676..c6d56a06b15 100644
--- a/gnu/packages/docker.scm
+++ b/gnu/packages/docker.scm
@@ -300,24 +300,23 @@ the required network abstractions for applications.")
300 (inherit docker-libnetwork) 300 (inherit docker-libnetwork)
301 (name "docker-libnetwork-cmd-proxy") 301 (name "docker-libnetwork-cmd-proxy")
302 (arguments 302 (arguments
303 ;; The tests are unsupported on all architectures except x86_64-linux. 303 (list
304 `(#:tests? ,(and (not (%current-target-system)) 304 ;; The tests are unsupported on all architectures except x86_64-linux.
305 (target-x86-64?)) 305 #:tests? (and (not (%current-target-system)) (target-x86-64?))
306 #:import-path "github.com/docker/libnetwork/cmd/proxy" 306 #:install-source? #f
307 #:unpack-path "github.com/docker/libnetwork" 307 #:import-path "github.com/docker/libnetwork/cmd/proxy"
308 #:install-source? #f)) 308 #:unpack-path "github.com/docker/libnetwork"))
309 (native-inputs 309 (native-inputs
310 `(("go-sctp" ,go-sctp) 310 (list go-github-com-sirupsen-logrus ; for tests.
311 ;; For tests. 311 go-github-com-vishvananda-netlink
312 ("logrus" ,go-github-com-sirupsen-logrus) 312 go-github-com-vishvananda-netns
313 ("go-github-com-vishvananda-netlink" ,go-github-com-vishvananda-netlink) 313 go-golang-org-x-crypto
314 ("go-github-com-vishvananda-netns" ,go-github-com-vishvananda-netns) 314 go-golang-org-x-sys
315 ("go-golang-org-x-crypto" 315 go-sctp))
316 ,go-golang-org-x-crypto)
317 ("go-golang-org-x-sys" ,go-golang-org-x-sys)))
318 (synopsis "Docker user-space proxy") 316 (synopsis "Docker user-space proxy")
319 (description "A proxy running in the user space. It is used by the 317 (description
320built-in registry server of Docker.") 318 "This package provides a proxy running in the user space. It is used by
319the built-in registry server of Docker.")
321 (license license:asl2.0))) 320 (license license:asl2.0)))
322 321
323;; TODO: Patch out modprobes for ip_vs, nf_conntrack, 322;; TODO: Patch out modprobes for ip_vs, nf_conntrack,