Skip to content

Commit

Permalink
sqlite: 3.16.2 -> 3.17.0
Browse files Browse the repository at this point in the history
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.
```
  • Loading branch information
rasendubi committed Mar 8, 2017
1 parent e17d3d4 commit d4bb1c7
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.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" ];
Expand Down

0 comments on commit d4bb1c7

Please sign in to comment.