guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit eee6080c44a60b264d905e4a7c7ef2378f169f03
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Wed May 28 23:18:44 2025 +0100

    gnu: Add go-github-com-cockroachdb-crlib.
    
    * gnu/packages/golang-xyz.scm (go-github-com-cockroachdb-crlib): New 
variable.
    
    Change-Id: I35be8ceb4cbc581421fa3102b88f6a7c7f7675bd
---
 gnu/packages/golang-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index a6db6fa6a8..c14b190b23 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3579,6 +3579,37 @@ locale can be selected.")
 the Go language features.")
     (license license:asl2.0)))
 
+(define-public go-github-com-cockroachdb-crlib
+  (package
+    (name "go-github-com-cockroachdb-crlib")
+    (version "0.0.0-20250521014800-1789bc709bcb")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/cockroachdb/crlib";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "09757m5brzl2pgvzqwgcz5sy0wnvgl12lz991plssazmgkl98dv6"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:go go-1.22
+      #:skip-build? #t
+      ;; TODO: More additional packages are required to enable all tests, it's
+      ;; used as source only package.
+      #:test-flags
+      #~(list "-skip" "TestLint")
+      #:import-path "github.com/cockroachdb/crlib"))
+    (home-page "https://github.com/cockroachdb/crlib";)
+    (synopsis "Utility library for CockroachDB")
+    (description
+     "This package provides general-purpose Go libraries and utilities.  It is
+intended as an \"extended standard library\" and it has no external
+dependencies.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-cockroachdb-fifo
   (package
     (name "go-github-com-cockroachdb-fifo")

Reply via email to