2010-02-04 19:07:15 +03:00
|
|
|
{ stdenv, fetchurl, readline ? null, ncurses ? null }:
|
2006-04-22 22:08:37 +04:00
|
|
|
|
2010-02-04 19:07:15 +03:00
|
|
|
assert readline != null -> ncurses != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-04-29 22:59:17 +04:00
|
|
|
name = "sqlite-3.7.16.2";
|
2008-06-17 13:39:38 +04:00
|
|
|
|
2007-03-21 22:25:58 +03:00
|
|
|
src = fetchurl {
|
2013-04-29 22:59:17 +04:00
|
|
|
url = http://www.sqlite.org/2013/sqlite-autoconf-3071602.tar.gz;
|
|
|
|
sha1 = "85bf857cf86f34831d55d7ba97606dba581b8d62";
|
2008-06-17 13:39:38 +04:00
|
|
|
};
|
2008-08-29 17:53:28 +04:00
|
|
|
|
2010-08-05 12:55:19 +04:00
|
|
|
buildInputs = [ readline ncurses ];
|
2012-09-14 21:16:47 +04:00
|
|
|
|
2010-02-03 13:51:11 +03:00
|
|
|
configureFlags = "--enable-threadsafe";
|
|
|
|
|
2011-11-17 00:21:07 +04: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 17:56:06 +04:00
|
|
|
|
2008-06-17 13:39:38 +04:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.sqlite.org/;
|
|
|
|
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
|
2013-06-29 15:31:17 +04:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2007-03-21 22:25:58 +03:00
|
|
|
};
|
2006-04-22 22:08:37 +04:00
|
|
|
}
|