gnu: SQLite. Add 3.37.

* gnu/packages/sqlite.scm (sqlite-next): New variable.
This commit is contained in:
Marius Bakke 2021-12-13 16:44:21 +01:00
parent dab8fd7ed4
commit 50b36f688b
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA

@ -108,3 +108,15 @@ zero-configuration, transactional SQL database engine. SQLite is the most
widely deployed SQL database engine in the world. The source code for SQLite widely deployed SQL database engine in the world. The source code for SQLite
is in the public domain.") is in the public domain.")
(license license:public-domain))) (license license:public-domain)))
;; Newer version required for e.g. fossil.
(define-public sqlite-next
(package
(inherit sqlite)
(version "3.37.0")
(source (origin
(method url-fetch)
(uri (sqlite-uri version 2021))
(sha256
(base32
"1xvrfh2r5x5pljlvakym3zrhml2dvsr8dd8xsb3nzcylsi8lc6kk"))))))