summaryrefslogtreecommitdiff
path: root/gnu/packages/ipfs.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-11 12:35:34 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-11 12:35:34 +0100
commit1bbd95458a1d8bb6435ba7adc8098755741ec270 (patch)
treea76de53f872c714c8ad71dcd837f7f6bc3c34da3 /gnu/packages/ipfs.scm
parent06251ce90cc6b75baa2260dc0cccacc9d4ddfb48 (diff)
gnu: go-github-com-libp2p-go-socket-activation: Move to ipfs.
* gnu/packages/golang-web.scm (go-github-com-libp2p-go-socket-activation): Move from here ... * gnu/packages/ipfs.scm: ... to here. Change-Id: I4f119ef54dcb26f9c448cc9a7b4d57bc30e0f544
Diffstat (limited to 'gnu/packages/ipfs.scm')
-rw-r--r--gnu/packages/ipfs.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index ed94ee43c09..76317563ffb 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -2386,6 +2386,35 @@ equal-length bit strings. XOR tries support efficient set operations, as well
2386as distance-based operations with respect to the XOR metric.") 2386as distance-based operations with respect to the XOR metric.")
2387 (license license:expat))) 2387 (license license:expat)))
2388 2388
2389(define-public go-github-com-libp2p-go-socket-activation
2390 (package
2391 (name "go-github-com-libp2p-go-socket-activation")
2392 (version "0.1.0")
2393 (source
2394 (origin
2395 (method git-fetch)
2396 (uri (git-reference
2397 (url "https://github.com/libp2p/go-socket-activation")
2398 (commit (string-append "v" version))))
2399 (file-name (git-file-name name version))
2400 (sha256
2401 (base32 "1cqxzmjfg7838xifs07kigys9icardwlj1wl426mzgzmbwn6pg5s"))))
2402 (build-system go-build-system)
2403 (arguments
2404 (list
2405 #:import-path "github.com/libp2p/go-socket-activation"))
2406 (propagated-inputs
2407 (list go-github-com-coreos-go-systemd-v22
2408 go-github-com-ipfs-go-log
2409 go-github-com-multiformats-go-multiaddr))
2410 (home-page "https://github.com/libp2p/go-socket-activation")
2411 (synopsis "Multiaddr backed systemd socket activation")
2412 (description
2413 "This package provides access to sockets registered by the system's init
2414daemon as described in
2415@url{http://0pointer.de/blog/projects/socket-activation}.")
2416 (license license:expat)))
2417
2389(define-public go-github-com-whyrusleeping-cbor-gen 2418(define-public go-github-com-whyrusleeping-cbor-gen
2390 (package 2419 (package
2391 (name "go-github-com-whyrusleeping-cbor-gen") 2420 (name "go-github-com-whyrusleeping-cbor-gen")