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