summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-02-07 21:08:28 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-02-13 14:22:16 +0000
commit13e682ea94d85b4d2dd856231f4e67d47a724141 (patch)
tree5f2051e15e098c5754ed1ef40a1f4c94c0b8f55c /gnu
parent35445a7c1a9a788f902594dd7ba0cd3547c7c7e6 (diff)
gnu: go-github-com-nsqio-go-diskqueue: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-nsqio-go-diskqueue): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I2051eb1f8a40eeab9c8cc96c540413f5818dd78e
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm23
-rw-r--r--gnu/packages/golang.scm23
2 files changed, 23 insertions, 23 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index e6decd29066..e4b6a09f2d4 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -378,6 +378,29 @@ library which posts the metrics to the Prometheus client registry and just
378updates the registry.") 378updates the registry.")
379 (license license:asl2.0))) 379 (license license:asl2.0)))
380 380
381(define-public go-github-com-nsqio-go-diskqueue
382 (package
383 (name "go-github-com-nsqio-go-diskqueue")
384 (version "1.1.0")
385 (source
386 (origin
387 (method git-fetch)
388 (uri (git-reference
389 (url "https://github.com/nsqio/go-diskqueue")
390 (commit (string-append "v" version))))
391 (file-name (git-file-name name version))
392 (sha256
393 (base32 "1hp66hkmfn0nyf3c53a40f94ah11a9rj01r5zp3jph9p54j8rany"))))
394 (build-system go-build-system)
395 (arguments
396 '(#:import-path "github.com/nsqio/go-diskqueue"))
397 (home-page "https://github.com/nsqio/go-diskqueue")
398 (synopsis "Go package providing a file system backed FIFO queue")
399 (description
400 "The @code{diskqueue} Go package provides a file system backed FIFO
401queue.")
402 (license license:expat)))
403
381(define-public go-github-com-nsqio-go-nsq 404(define-public go-github-com-nsqio-go-nsq
382 (package 405 (package
383 (name "go-github-com-nsqio-go-nsq") 406 (name "go-github-com-nsqio-go-nsq")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index d7c7198cc02..d529490b493 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3076,29 +3076,6 @@ web framework
3076sunset times from geographical coordinates and a date.") 3076sunset times from geographical coordinates and a date.")
3077 (license license:expat)))) 3077 (license license:expat))))
3078 3078
3079(define-public go-github-com-nsqio-go-diskqueue
3080 (package
3081 (name "go-github-com-nsqio-go-diskqueue")
3082 (version "1.1.0")
3083 (source (origin
3084 (method git-fetch)
3085 (uri (git-reference
3086 (url "https://github.com/nsqio/go-diskqueue")
3087 (commit (string-append "v" version))))
3088 (file-name (git-file-name name version))
3089 (sha256
3090 (base32
3091 "1hp66hkmfn0nyf3c53a40f94ah11a9rj01r5zp3jph9p54j8rany"))))
3092 (build-system go-build-system)
3093 (arguments
3094 '(#:import-path "github.com/nsqio/go-diskqueue"))
3095 (home-page "https://github.com/nsqio/go-diskqueue")
3096 (synopsis "Go package providing a file system backed FIFO queue")
3097 (description
3098 "The @code{diskqueue} Go package provides a file system backed FIFO
3099queue.")
3100 (license license:expat)))
3101
3102(define-public go-github-com-hebcal-gematriya 3079(define-public go-github-com-hebcal-gematriya
3103 (let ((commit "fe3043f73e415eb82727701d10f2fb40f87675e9") 3080 (let ((commit "fe3043f73e415eb82727701d10f2fb40f87675e9")
3104 (revision "0")) 3081 (revision "0"))