gnu: SQLite: Update to 3.39.1.
* gnu/packages/sqlite.scm (sqlite): Update to 3.39.1. (sqlite-next): Remove variable.master
parent
5d970dfa89
commit
576024a738
|
@ -61,14 +61,14 @@
|
||||||
(define-public sqlite
|
(define-public sqlite
|
||||||
(package
|
(package
|
||||||
(name "sqlite")
|
(name "sqlite")
|
||||||
(version "3.39.0")
|
(version "3.39.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (sqlite-uri version 2022))
|
(uri (sqlite-uri version 2022))
|
||||||
(patches (search-patches "sqlite-hurd.patch"))
|
(patches (search-patches "sqlite-hurd.patch"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1qh9xpjf3g1vkxzh3wf0mv8bzjgkcmmpz1jfxv6kz0fmdppwl2z9"))))
|
"1i0wjd1mig720q1gk9jkpw6h0mialbrlkfh8w8lans0czakygj47"))))
|
||||||
(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 @@ 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.39.1")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (sqlite-uri version 2022))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1i0wjd1mig720q1gk9jkpw6h0mialbrlkfh8w8lans0czakygj47"))))))
|
|
||||||
|
|
Reference in New Issue