guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add go-github-com-peterbourgon-diskv.


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

sharlatan pushed a commit to branch master
in repository guix.

commit 0edf8a2eabd386d209d4b32aca599ce22a3a7533
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Sat Dec 30 21:24:42 2023 +0300

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

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 060a6b2583..979642c509 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -12053,6 +12053,33 @@ using shell-style rules for quoting and commenting.")
 ordered, mutable data structure.")
     (license license:asl2.0)))
 
+(define-public go-github-com-peterbourgon-diskv
+  (package
+    (name "go-github-com-peterbourgon-diskv")
+    (version "3.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/peterbourgon/diskv";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0pdy8f7bkm65gx4vknwcvfa619hknflqxkdlvmf427k2mzm91gmh"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/peterbourgon/diskv"
+       #:go ,go-1.18))
+    (propagated-inputs (list go-github-com-google-btree))
+    (home-page "https://github.com/peterbourgon/diskv";)
+    (synopsis "Disk-backed key-value store")
+    (description
+     "Diskv (disk-vee) is a simple, persistent key-value store written in the 
Go
+language.  It starts with a simple API for storing arbitrary data on a 
filesystem by
+key, and builds several layers of performance-enhancing abstraction on top.  
The end
+result is a conceptually simple, but highly performant, disk-backed storage 
system.")
+    (license license:expat)))
+
 (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]