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