sqlite: 3.9.2 -> 3.11.1

This commit is contained in:
Eelco Dolstra 2016-03-11 14:26:56 +01:00
parent e026b5c243
commit d86633386f

View File

@ -3,11 +3,11 @@
assert interactive -> readline != null && ncurses != null;
stdenv.mkDerivation {
name = "sqlite-3.9.2";
name = "sqlite-3.11.1";
src = fetchurl {
url = "http://sqlite.org/2015/sqlite-autoconf-3090200.tar.gz";
sha256 = "0sy3zdnvwml9q2s8dj4sc95r5y82b5xcl2vp9i6m6xwikjz0lk06";
url = "http://sqlite.org/2016/sqlite-autoconf-3110100.tar.gz";
sha1 = "c4b4dcd735a4daf5a2e2bb90f374484c8d4dad29";
};
buildInputs = lib.optionals interactive [ readline ncurses ];