me
/
guix
Archived
1
0
Fork 0

gnu: SQLite: Update to 3.39.1.

* gnu/packages/sqlite.scm (sqlite): Update to 3.39.1.
(sqlite-next): Remove variable.
master
Marius Bakke 2022-07-16 23:35:34 +02:00
parent 5d970dfa89
commit 576024a738
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 2 additions and 14 deletions

View File

@ -61,14 +61,14 @@
(define-public sqlite
(package
(name "sqlite")
(version "3.39.0")
(version "3.39.1")
(source (origin
(method url-fetch)
(uri (sqlite-uri version 2022))
(patches (search-patches "sqlite-hurd.patch"))
(sha256
(base32
"1qh9xpjf3g1vkxzh3wf0mv8bzjgkcmmpz1jfxv6kz0fmdppwl2z9"))))
"1i0wjd1mig720q1gk9jkpw6h0mialbrlkfh8w8lans0czakygj47"))))
(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.39.1")
(source (origin
(method url-fetch)
(uri (sqlite-uri version 2022))
(sha256
(base32
"1i0wjd1mig720q1gk9jkpw6h0mialbrlkfh8w8lans0czakygj47"))))))