guix-commits
[Top][All Lists]
Advanced

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

07/24: gnu: Add go-github-com-elliotchance-orderedmap.


From: guix-commits
Subject: 07/24: gnu: Add go-github-com-elliotchance-orderedmap.
Date: Fri, 16 Feb 2024 09:21:11 -0500 (EST)

sharlatan pushed a commit to branch master
in repository guix.

commit 10ecec291eac4a7d762fbb527734e9bf5fa9be85
Author: Hilton Chain <hako@ultrarare.space>
AuthorDate: Sat Jul 29 01:19:53 2023 +0800

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

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index cbb7c394d8..d2e58001cf 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -462,6 +462,31 @@ Mark} detection.")
 atimes for files.")
     (license license:expat)))
 
+(define-public go-github-com-elliotchance-orderedmap
+  (package
+    (name "go-github-com-elliotchance-orderedmap")
+    (version "1.5.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/elliotchance/orderedmap";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "06gq5hsgfmzfr46wds366ghyn16qkygyz83vrsgargf4l7db9zg7"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/elliotchance/orderedmap"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (home-page "https://github.com/elliotchance/orderedmap";)
+    (synopsis "Go ordered map library")
+    (description
+     "This package provides a ordered map library that maintains amortized O(1)
+for @code{Set}, @code{Get}, @code{Delete} and @code{Len}.")
+    (license license:expat)))
+
 (define-public go-github-com-gabriel-vasile-mimetype
   (package
     (name "go-github-com-gabriel-vasile-mimetype")



reply via email to

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