2010-02-04 08:07:15 -08:00
|
|
|
{ stdenv, fetchurl, readline ? null, ncurses ? null }:
|
2006-04-22 11:08:37 -07:00
|
|
|
|
2010-02-04 08:07:15 -08:00
|
|
|
assert readline != null -> ncurses != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-03-23 02:34:47 -07:00
|
|
|
name = "sqlite-3.6.23";
|
2008-06-17 02:39:38 -07:00
|
|
|
|
2007-03-21 12:25:58 -07:00
|
|
|
src = fetchurl {
|
2010-03-23 02:34:47 -07:00
|
|
|
url = "http://www.sqlite.org/sqlite-amalgamation-3.6.23.tar.gz";
|
|
|
|
sha256 = "a5de9ec9273acabc6cb18235df802549c476410b09d58a206e02862b4dc303ae";
|
2008-06-17 02:39:38 -07:00
|
|
|
};
|
2008-08-29 06:53:28 -07:00
|
|
|
|
2010-02-04 08:07:15 -08:00
|
|
|
buildInputs = [readline ncurses];
|
2010-02-03 02:51:11 -08:00
|
|
|
configureFlags = "--enable-threadsafe";
|
|
|
|
|
2009-07-02 06:56:06 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-DSQLITE_ENABLE_COLUMN_METADATA=1";
|
2010-02-04 08:07:15 -08:00
|
|
|
NIX_CFLAGS_LINK = if readline != null then "-lncurses" else "";
|
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";
|
2007-03-21 12:25:58 -07:00
|
|
|
};
|
2006-04-22 11:08:37 -07:00
|
|
|
}
|