2010-02-04 17:07:15 +01:00
|
|
|
{ stdenv, fetchurl, readline ? null, ncurses ? null }:
|
2006-04-22 20:08:37 +02:00
|
|
|
|
2010-02-04 17:07:15 +01:00
|
|
|
assert readline != null -> ncurses != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-08-06 09:45:54 +02:00
|
|
|
name = "sqlite-3.7.0.1";
|
2008-06-17 11:39:38 +02:00
|
|
|
|
2007-03-21 20:25:58 +01:00
|
|
|
src = fetchurl {
|
2010-08-06 09:45:54 +02:00
|
|
|
url = "http://www.sqlite.org/sqlite-amalgamation-3.7.0.1.tar.gz";
|
|
|
|
sha256 = "0nx506wmp32l6sh2p82bd2fscak1b402fp86cxl3r9pfs1yvychj";
|
2008-06-17 11:39:38 +02:00
|
|
|
};
|
2008-08-29 15:53:28 +02:00
|
|
|
|
2010-08-05 10:55:19 +02:00
|
|
|
buildInputs = [ readline ncurses ];
|
|
|
|
|
2010-02-03 11:51:11 +01:00
|
|
|
configureFlags = "--enable-threadsafe";
|
|
|
|
|
2009-07-02 15:56:06 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-DSQLITE_ENABLE_COLUMN_METADATA=1";
|
2010-02-04 17:07:15 +01:00
|
|
|
NIX_CFLAGS_LINK = if readline != null then "-lncurses" else "";
|
2009-07-02 15:56:06 +02:00
|
|
|
|
2008-06-17 11:39:38 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.sqlite.org/;
|
|
|
|
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
|
2007-03-21 20:25:58 +01:00
|
|
|
};
|
2006-04-22 20:08:37 +02:00
|
|
|
}
|