2010-02-04 16:07:15 +00:00
|
|
|
{ stdenv, fetchurl, readline ? null, ncurses ? null }:
|
2006-04-22 19:08:37 +01:00
|
|
|
|
2010-02-04 16:07:15 +00:00
|
|
|
assert readline != null -> ncurses != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-09-14 18:16:47 +01:00
|
|
|
name = "sqlite-3.7.14";
|
2008-06-17 10:39:38 +01:00
|
|
|
|
2007-03-21 19:25:58 +00:00
|
|
|
src = fetchurl {
|
2012-09-14 18:16:47 +01:00
|
|
|
url = http://www.sqlite.org/sqlite-autoconf-3071400.tar.gz;
|
|
|
|
sha1 = "7b429809918201555f4c0fa639183a1c663d3fe0";
|
2008-06-17 10:39:38 +01:00
|
|
|
};
|
2008-08-29 14:53:28 +01:00
|
|
|
|
2010-08-05 09:55:19 +01:00
|
|
|
buildInputs = [ readline ncurses ];
|
2012-09-14 18:16:47 +01:00
|
|
|
|
2010-02-03 10:51:11 +00:00
|
|
|
configureFlags = "--enable-threadsafe";
|
|
|
|
|
2011-11-16 20:21:07 +00:00
|
|
|
CFLAGS = "-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1";
|
|
|
|
LDFLAGS = if readline != null then "-lncurses" else "";
|
2009-07-02 14:56:06 +01:00
|
|
|
|
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
|
|
|
}
|