guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add go-github-com-google-btree.


From: guix-commits
Subject: 01/02: gnu: Add go-github-com-google-btree.
Date: Fri, 12 Jan 2024 17:27:22 -0500 (EST)

sharlatan pushed a commit to branch master
in repository guix.

commit f847b47be0b2be480d74685b11fac42babfd41d2
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Sat Dec 30 21:20:43 2023 +0300

    gnu: Add go-github-com-google-btree.
    
    * gnu/packages/golang.scm (go-github-com-google-btree): New variable.
    
    Change-Id: Ibe7ce2c457153e40539bb26e0fcaf0bec79ed253
    Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
 gnu/packages/golang.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index c68f26bf42..060a6b2583 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -12030,6 +12030,29 @@ implementation.")
 using shell-style rules for quoting and commenting.")
     (license license:asl2.0)))
 
+(define-public go-github-com-google-btree
+  (package
+    (name "go-github-com-google-btree")
+    (version "1.1.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/google/btree";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0cqa8ck26p3wqz877hcvmfss17xm8wcbwd68shxv795ppahpdd9b"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/google/btree"))
+    (home-page "https://github.com/google/btree";)
+    (synopsis "Simple, ordered, in-memory data structure for Go programs")
+    (description
+     "This package provides an in-memory B-Tree implementation for Go, useful 
as an
+ordered, mutable data structure.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-disintegration-imaging
   (package
     (name "go-github-com-disintegration-imaging")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]