mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-05 19:11:43 -05: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 (sqlite-uri version year)
|
||||||
(define-public sqlite
|
(define-public sqlite
|
||||||
(package
|
(package
|
||||||
(name "sqlite")
|
(name "sqlite")
|
||||||
(version "3.36.0")
|
(version "3.39.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (sqlite-uri version 2021))
|
(uri (sqlite-uri version 2022))
|
||||||
(patches (search-patches "sqlite-hurd.patch"))
|
(patches (search-patches "sqlite-hurd.patch"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1qxwkfvd185dfcqbakrzikrsw6ffr5jp1gl3dch9dsdyjvmw745x"))))
|
"1qh9xpjf3g1vkxzh3wf0mv8bzjgkcmmpz1jfxv6kz0fmdppwl2z9"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs (list readline))
|
(inputs (list readline))
|
||||||
(outputs '("out" "static"))
|
(outputs '("out" "static"))
|
||||||
|
@ -108,15 +108,3 @@ (define-public sqlite
|
||||||
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"))))))
|
|
||||||
|
|
|
@ -2698,7 +2698,7 @@ (define-public fossil
|
||||||
which ;for tests only
|
which ;for tests only
|
||||||
ed)) ;ditto
|
ed)) ;ditto
|
||||||
(inputs
|
(inputs
|
||||||
(list openssl zlib sqlite-next)) ;SQLite 3.37 or later
|
(list openssl zlib sqlite))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "--with-openssl=auto"
|
`(#:configure-flags (list "--with-openssl=auto"
|
||||||
"--disable-internal-sqlite")
|
"--disable-internal-sqlite")
|
||||||
|
|
Loading…
Reference in a new issue