1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-30 22:35:57 +02:00

gnu: Add go-modernc-org-sqlite.

* gnu/packages/golang-xyz.scm (go-modernc-org-sqlite): New variable.

Change-Id: I61f5a5914d6aac8e7d998165f705039ba09e3b86

Change-Id: I87dcca403b3b05aa977e4b02e0f873c250361e1f
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Roman Scherer
2025-10-17 14:43:00 +00:00
committed by Sharlatan Hellseher
parent 5b4396798d
commit 82a841c455
+35
View File
@@ -24520,6 +24520,41 @@ with ccgo-generated code.")
@code{sort} package.")
(license license:bsd-3)))
(define-public go-modernc-org-sqlite
(package
(name "go-modernc-org-sqlite")
(version "1.38.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/cznic/sqlite")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0579vip4vn488jppjpadryxyimkw2jr8ywr4j0piqcm2zs40h509"))))
(build-system go-build-system)
(arguments
(list
#:import-path "modernc.org/sqlite"
;; Tests require modernc.org/ccgo/v4/lib, which is not packaged yet
#:tests? #f))
(propagated-inputs
(list go-github-com-dustin-go-humanize
go-github-com-google-uuid
go-github-com-ncruces-go-strftime
go-github-com-remyoudompheng-bigfft
go-golang-org-x-sys
go-modernc-org-libc
go-modernc-org-mathutil
go-modernc-org-memory))
(home-page "https://modernc.org/sqlite")
(synopsis "CGo-free port of SQLite")
(description
"Package sqlite is a CGo-free port of SQLite. It is a drop-in
replacement for mattn/go-sqlite3.")
(license license:bsd-3)))
(define-public go-modernc-org-strutil
(package
(name "go-modernc-org-strutil")