1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add go-github-com-kamstrup-intmap.

* gnu/packages/golang-xyz.scm (go-github-com-kamstrup-intmap): New variable.

Change-Id: I7196f9c57d4ccccae2022e4524b64ce6f923d35d
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Ashvith Shetty 2025-04-15 23:47:32 +05:30 committed by Ludovic Courtès
parent 6f3fb54f72
commit 99908b5844
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -9545,6 +9545,31 @@ ansi.")
customized globally.")
(license license:expat)))
(define-public go-github-com-kamstrup-intmap
(package
(name "go-github-com-kamstrup-intmap")
(version "0.5.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kamstrup/intmap")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1w9masbm9x2p4njxngr5sgqbjnwdwxv3f68yd3wgrrrjbfw5lh44"))))
(build-system go-build-system)
(arguments
(list
#:go go-1.23
#:import-path "github.com/kamstrup/intmap"))
(home-page "https://github.com/kamstrup/intmap")
(synopsis "Fast hashmap with integer keys for Golang")
(description
"@code{intmap} is a fast hashmap implementation for Golang, specialized for maps with
integer type keys.")
(license license:bsd-2)))
;; Some packages (Yggdrasil) need it to compile it's a tiny package and it's
;; easier to bundle it than to patch it out.
(define-public go-github-com-kardianos-minwinsvc