mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-11 14:26:13 +01:00
gnu: SQLite: Update to 3.39.0.
* gnu/packages/sqlite.scm (sqlite): Update to 3.39.0. (sqlite-next): Remove variable. * gnu/packages/version-control.scm (fossil)[inputs]: Change from SQLITE-NEXT to SQLITE.
This commit is contained in:
parent
6fb1fc5fe6
commit
5e68c8a6d1
2 changed files with 4 additions and 16 deletions
|
@ -61,14 +61,14 @@
|
|||
(define-public sqlite
|
||||
(package
|
||||
(name "sqlite")
|
||||
(version "3.36.0")
|
||||
(version "3.39.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (sqlite-uri version 2021))
|
||||
(uri (sqlite-uri version 2022))
|
||||
(patches (search-patches "sqlite-hurd.patch"))
|
||||
(sha256
|
||||
(base32
|
||||
"1qxwkfvd185dfcqbakrzikrsw6ffr5jp1gl3dch9dsdyjvmw745x"))))
|
||||
"1qh9xpjf3g1vkxzh3wf0mv8bzjgkcmmpz1jfxv6kz0fmdppwl2z9"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs (list readline))
|
||||
(outputs '("out" "static"))
|
||||
|
@ -108,15 +108,3 @@ zero-configuration, transactional SQL database engine. SQLite is the most
|
|||
widely deployed SQL database engine in the world. The source code for SQLite
|
||||
is in the 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"))))))
|
||||
|
|
|
@ -2698,7 +2698,7 @@ by rclone usable with git-annex.")
|
|||
which ;for tests only
|
||||
ed)) ;ditto
|
||||
(inputs
|
||||
(list openssl zlib sqlite-next)) ;SQLite 3.37 or later
|
||||
(list openssl zlib sqlite))
|
||||
(arguments
|
||||
`(#:configure-flags (list "--with-openssl=auto"
|
||||
"--disable-internal-sqlite")
|
||||
|
|
Loading…
Add table
Reference in a new issue