2014-10-24 09:38:52 +00:00
|
|
|
{ lib, stdenv, fetchurl, interactive ? false, readline ? null, ncurses ? null }:
|
2006-04-22 18:08:37 +00:00
|
|
|
|
2014-10-24 09:38:52 +00:00
|
|
|
assert interactive -> readline != null && ncurses != null;
|
2010-02-04 16:07:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-06-12 11:50:37 +00:00
|
|
|
name = "sqlite-3.8.10.2";
|
2008-06-17 09:39:38 +00:00
|
|
|
|
2007-03-21 19:25:58 +00:00
|
|
|
src = fetchurl {
|
2015-06-12 11:50:37 +00:00
|
|
|
url = "http://sqlite.org/2015/sqlite-autoconf-3081002.tar.gz";
|
|
|
|
sha1 = "c2f2c17d3dc4c4e179d35cc04e4420636d48a152";
|
2008-06-17 09:39:38 +00:00
|
|
|
};
|
2008-08-29 13:53:28 +00:00
|
|
|
|
2014-10-24 09:38:52 +00:00
|
|
|
buildInputs = lib.optionals interactive [ readline ncurses ];
|
2012-09-14 17:16:47 +00:00
|
|
|
|
2010-02-03 10:51:11 +00:00
|
|
|
configureFlags = "--enable-threadsafe";
|
|
|
|
|
2014-10-24 09:39:40 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1";
|
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;
|
2015-03-15 22:03:14 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ eelco np ];
|
2007-03-21 19:25:58 +00:00
|
|
|
};
|
2006-04-22 18:08:37 +00:00
|
|
|
}
|