mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: SQLite: Update to 3.39.3.
* gnu/packages/sqlite.scm (sqlite): Update to 3.39.3. (sqlite-next): Remove variable.
This commit is contained in:
parent
14b8282aa2
commit
9ad392fc7f
1 changed files with 5 additions and 13 deletions
|
@ -37,6 +37,7 @@ (define-module (gnu packages sqlite)
|
|||
#:use-module (guix download)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix deprecation)
|
||||
#:use-module (ice-9 match)
|
||||
#:use-module (srfi srfi-26))
|
||||
|
||||
|
@ -61,14 +62,14 @@ (define (sqlite-uri version year)
|
|||
(define-public sqlite
|
||||
(package
|
||||
(name "sqlite")
|
||||
(version "3.39.2")
|
||||
(version "3.39.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (sqlite-uri version 2022))
|
||||
(patches (search-patches "sqlite-hurd.patch"))
|
||||
(sha256
|
||||
(base32
|
||||
"1pirla4d1z1lzkp3pgw3sbzmmamp01sgzfz0rr3vl5rs32kfhaw5"))))
|
||||
"1f922kq16g7f4h3gpzim78lvrp5xw9nvlvqw97s2qgxyh8qgns3q"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs (list readline))
|
||||
(outputs '("out" "static"))
|
||||
|
@ -109,14 +110,5 @@ (define-public 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.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (sqlite-uri version 2022))
|
||||
(sha256
|
||||
(base32
|
||||
"1f922kq16g7f4h3gpzim78lvrp5xw9nvlvqw97s2qgxyh8qgns3q"))))))
|
||||
(define-deprecated sqlite-next sqlite)
|
||||
(export sqlite-next)
|
||||
|
|
Loading…
Reference in a new issue