sqlite: 3.22.0 -> 3.23.1

https://sqlite.org/releaselog/3_23_1.html

(also contains notes for 3.23.0)

Adds CLI support for SQLite archive files:
https://sqlite.org/sqlar.html
This commit is contained in:
Will Dietz 2018-05-16 21:19:33 -05:00
parent 59e18906bc
commit a6d8d54e79

View File

@ -3,11 +3,11 @@
assert interactive -> readline != null && ncurses != null; assert interactive -> readline != null && ncurses != null;
stdenv.mkDerivation { stdenv.mkDerivation {
name = "sqlite-3.22.0"; name = "sqlite-3.23.1";
src = fetchurl { src = fetchurl {
url = "http://sqlite.org/2018/sqlite-autoconf-3220000.tar.gz"; url = https://sqlite.org/2018/sqlite-autoconf-3230100.tar.gz;
sha256 = "04n6hnw2g818d7r92cp2608kd5mhzyysy83k29kbq1mp709an918"; sha256 = "09ggapjhqjb2pzk0wkfczil77plijg3d77m2bpzlwx2y7ql2p14j";
}; };
outputs = [ "bin" "dev" "out" ]; outputs = [ "bin" "dev" "out" ];