2008-08-29 14:53:28 +01:00
|
|
|
{stdenv, fetchurl, readline}:
|
2006-04-22 19:08:37 +01:00
|
|
|
|
2009-03-12 12:56:55 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sqlite-3.6.10";
|
2008-06-17 10:39:38 +01:00
|
|
|
|
|
|
|
# Note: don't use the "amalgamation" source release, since it
|
|
|
|
# doesn't install sqlite3.pc.
|
2007-03-21 19:25:58 +00:00
|
|
|
src = fetchurl {
|
2009-03-12 12:56:55 +00:00
|
|
|
url = "http://www.sqlite.org/${name}.tar.gz";
|
|
|
|
sha256 = "00dabyjg0530ng52b8lq6hwb6h181wl27ix5l7ayib0am8sdnmr1";
|
2008-06-17 10:39:38 +01:00
|
|
|
};
|
2008-08-29 14:53:28 +01:00
|
|
|
|
|
|
|
buildInputs = [readline];
|
|
|
|
|
2009-03-12 12:56:55 +00:00
|
|
|
configureFlags = "--disable-static --with-readline-inc=-I${readline}/include";
|
|
|
|
|
2008-06-17 10:39:38 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.sqlite.org/;
|
|
|
|
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
|
2007-03-21 19:25:58 +00:00
|
|
|
};
|
2006-04-22 19:08:37 +01:00
|
|
|
}
|