Skip to content

Commit

Permalink
sqlite: 3.22.0 -> 3.23.1
Browse files Browse the repository at this point in the history
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

(cherry picked from commit a6d8d54)
Fixes CVE-2018-8740; /cc #41749 and #40626.
We have 3.24 on master already, but that's rather fresh and I can't see
any serious fixes in that bump.  Also, the analyzer packages and other
changes in the expressions are left behind, as they don't seem required.
  • Loading branch information
dtzWill authored and vcunat committed Jun 17, 2018
1 parent e57877e commit 47c09df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/libraries/sqlite/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
assert interactive -> readline != null && ncurses != null;

stdenv.mkDerivation {
name = "sqlite-3.22.0";
name = "sqlite-3.23.1";

src = fetchurl {
url = "http://sqlite.org/2018/sqlite-autoconf-3220000.tar.gz";
sha256 = "04n6hnw2g818d7r92cp2608kd5mhzyysy83k29kbq1mp709an918";
url = https://sqlite.org/2018/sqlite-autoconf-3230100.tar.gz;
sha256 = "09ggapjhqjb2pzk0wkfczil77plijg3d77m2bpzlwx2y7ql2p14j";
};

outputs = [ "bin" "dev" "out" ];
Expand Down

0 comments on commit 47c09df

Please sign in to comment.