2014-10-24 02:38:52 -07:00
|
|
|
{ lib, stdenv, fetchurl, interactive ? false, readline ? null, ncurses ? null }:
|
2006-04-22 11:08:37 -07:00
|
|
|
|
2014-10-24 02:38:52 -07:00
|
|
|
assert interactive -> readline != null && ncurses != null;
|
2010-02-04 08:07:15 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-02-24 09:42:00 -08:00
|
|
|
name = "sqlite-3.8.7.4";
|
2008-06-17 02:39:38 -07:00
|
|
|
|
2007-03-21 12:25:58 -07:00
|
|
|
src = fetchurl {
|
2015-02-24 09:42:00 -08:00
|
|
|
url = "http://www.sqlite.org/2014/sqlite-autoconf-3080704.tar.gz";
|
|
|
|
sha1 = "70ca0b8884a6b145b7f777724670566e2b4f3cde";
|
2008-06-17 02:39:38 -07:00
|
|
|
};
|
2008-08-29 06:53:28 -07:00
|
|
|
|
2014-10-24 02:38:52 -07:00
|
|
|
buildInputs = lib.optionals interactive [ readline ncurses ];
|
2012-09-14 10:16:47 -07:00
|
|
|
|
2010-02-03 02:51:11 -08:00
|
|
|
configureFlags = "--enable-threadsafe";
|
|
|
|
|
2014-10-24 02:39:40 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1";
|
2009-07-02 06:56:06 -07:00
|
|
|
|
2008-06-17 02:39:38 -07:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.sqlite.org/;
|
|
|
|
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
|
2013-11-05 01:46:59 -08:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-10-14 11:32:40 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2007-03-21 12:25:58 -07:00
|
|
|
};
|
2006-04-22 11:08:37 -07:00
|
|
|
}
|