* SQLite 3.6.3.

svn path=/nixpkgs/trunk/; revision=13045
This commit is contained in:
Eelco Dolstra 2008-10-10 12:55:25 +00:00
parent f5a5098f27
commit f289d7eb21

View File

@ -1,13 +1,13 @@
{stdenv, fetchurl, readline}:
stdenv.mkDerivation {
name = "sqlite-3.5.9";
name = "sqlite-3.6.3";
# Note: don't use the "amalgamation" source release, since it
# doesn't install sqlite3.pc.
src = fetchurl {
url = http://www.sqlite.org/sqlite-3.5.9.tar.gz;
sha256 = "0731zj0fnivhfc74wc3yh0p9gn7fpjgy3g79haarciqkdf8k3lvx";
url = http://www.sqlite.org/sqlite-3.6.3.tar.gz;
sha256 = "0kd9dpbrjp05159qsqwrm00h6a2cqjxqwpi33b6i5q8mr1bzkz1i";
};
buildInputs = [readline];