sqlite: 3.16.2 -> 3.17.0

Firefox requires the latest sqlite to build:
```
checking for sqlite3 >= 3.17.0... Requested 'sqlite3 >= 3.17.0' but version of SQLite is 3.16.2
configure: error: Library requirements (sqlite3 >= 3.17.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
```
This commit is contained in:
Alexey Shmalko 2017-03-08 13:39:40 +02:00
parent e17d3d4ef1
commit d4bb1c786f
No known key found for this signature in database
GPG Key ID: DCEF7BCCEB3066C3

View File

@ -3,11 +3,11 @@
assert interactive -> readline != null && ncurses != null;
stdenv.mkDerivation {
name = "sqlite-3.16.2";
name = "sqlite-3.17.0";
src = fetchurl {
url = "http://sqlite.org/2017/sqlite-autoconf-3160200.tar.gz";
sha256 = "059n4s9qd35qpbd4g29y9ay99a6f68ad7k65g430rxb6jcz0rk35";
url = "http://sqlite.org/2017/sqlite-autoconf-3170000.tar.gz";
sha256 = "0k472gq0p706jq4529p60znvw02hdf172qxgbdv59q0n7anqbr54";
};
outputs = [ "bin" "dev" "out" ];