sharlatan pushed a commit to branch master
in repository guix.

commit 4678b09f440af89646760d7fea0ea7a924817fbd
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jun 17 22:34:36 2024 +0100

    gnu: Add go-github-com-ipfs-go-ipfs-delay.
    
    * gnu/packages/ipfs.scm (go-github-com-ipfs-go-ipfs-delay): New variable.
    
    Change-Id: I4938d20d9916d9573e8cb01b9e93ba710c7c5b3c
---
 gnu/packages/ipfs.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index 505003229c..f93a708355 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2020, 2021, 2022 Michael Rohleder <[email protected]>
 ;;; Copyright © 2022 Maxime Devos <[email protected]>
 ;;; Copyright © 2023, 2024 Artyom V. Poptsov <[email protected]>
+;;; Copyright © 2024 Sharlatan Hellseher <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -158,6 +159,30 @@ that are shared between @command{go-ipfs/commands} and its 
rewrite
 @command{go-ipfs-cmds}.")
       (license license:expat))))
 
+(define-public go-github-com-ipfs-go-ipfs-delay
+  (package
+    (name "go-github-com-ipfs-go-ipfs-delay")
+    (version "0.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ipfs/go-ipfs-delay";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0a5acj622sk1hibnh893mya4h86nsy1dan0wlh9q444c04iqpviw"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/ipfs/go-ipfs-delay"))
+    (home-page "https://github.com/ipfs/go-ipfs-delay";)
+    (synopsis "Configurable delays to other objects")
+    (description
+     "This package implements a threadsafe configurable delays to other
+objects.")
+    (license license:expat)))
+
 (define-public go-github-com-ipfs-go-detect-race
   (package
     (name "go-github-com-ipfs-go-detect-race")

Reply via email to