pkgs/development/libraries/sqlite/default.nix: updated to version 3.6.19

The new version requires Tcl at build time in order to construct sqlite3.h,
even when the --without-tcl option is passed to configure. That feels odd
because the sqlite web site does advertise "no dependencies", but then it's
probably not a big deal either. The build of the Tcl plugin for sqlite is still
disabled, so there is no run-time dependency.

svn path=/nixpkgs/trunk/; revision=18091
This commit is contained in:
Peter Simons 2009-11-04 13:07:21 +00:00
parent f9b71e1c54
commit 600d6a9bac
2 changed files with 5 additions and 5 deletions

View file

@ -1,16 +1,16 @@
{stdenv, fetchurl, readline, static ? false}:
{stdenv, fetchurl, readline, tcl, static ? false}:
stdenv.mkDerivation rec {
name = "sqlite-3.6.16";
name = "sqlite-3.6.19";
# Note: don't use the "amalgamation" source release, since it
# doesn't install sqlite3.pc.
src = fetchurl {
url = "http://www.sqlite.org/${name}.tar.gz";
sha256 = "1kadzd5c82x3i7vd0cfqxc3r8a2smc04fhsxpl07jxjlva4khvqc";
sha256 = "7d8649c44fb97b874aa59144faaeb2356ec1fc6a8a7baa1d16e9ff5f1e097003";
};
buildInputs = [readline];
buildInputs = [readline tcl];
configureFlags = ''
--enable-load-extension

View file

@ -4509,7 +4509,7 @@ let
};
sqlite = import ../development/libraries/sqlite {
inherit fetchurl stdenv readline;
inherit fetchurl stdenv readline tcl;
};
stlport = import ../development/libraries/stlport {