1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add go-github-com-jmhodges-levigo.

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

Change-Id: I9746e502b62731c7f8608495dd5ee516ccb61573
This commit is contained in:
Sharlatan Hellseher
2025-11-25 09:14:25 +00:00
parent 7ce8f5e0c1
commit 5550a8cd62

View File

@@ -12067,6 +12067,34 @@ for Go. The project is meant as alternative to
reflection.")
(license license:expat)))
(define-public go-github-com-jmhodges-levigo
(package
(name "go-github-com-jmhodges-levigo")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jmhodges/levigo")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1lhh413mmclnkwn2lk1crwzargam2cx5w7k6zj8pgasy62c78iy4"))))
(build-system go-build-system)
(arguments
(list
;; XXX: leveldb has to be added to the final target package, this is not
;; included here to prevent using databases module.
#:skip-build? #t
#:tests? #f
#:import-path "github.com/jmhodges/levigo"))
(home-page "https://github.com/jmhodges/levigo")
(synopsis "Golang wrapper for LevelDB")
(description
"This package provides a functionality to create and access
@url{http://code.google.com/p/leveldb/, LevelDB} databases.")
(license license:expat)))
(define-public go-github-com-jmoiron-sqlx
(package
(name "go-github-com-jmoiron-sqlx")