nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

sqlite: 3.9.1 -> 3.9.2

+3 -3
+3 -3
pkgs/development/libraries/sqlite/default.nix
··· 3 3 assert interactive -> readline != null && ncurses != null; 4 4 5 5 stdenv.mkDerivation { 6 - name = "sqlite-3.9.1"; 6 + name = "sqlite-3.9.2"; 7 7 8 8 src = fetchurl { 9 - url = "http://sqlite.org/2015/sqlite-autoconf-3090100.tar.gz"; 10 - sha1 = "6b7d22c24c9695118a2706c8e026fb3c31780a30"; 9 + url = "http://sqlite.org/2015/sqlite-autoconf-3090200.tar.gz"; 10 + sha1 = "dae1ae5297fece9671ae0c434a7ecd0cda09c76a"; 11 11 }; 12 12 13 13 buildInputs = lib.optionals interactive [ readline ncurses ];