nixpkgs/pkgs/development/libraries/sqlite/default.nix

26 lines
832 B
Nix
Raw Normal View History

2014-10-24 11:38:52 +02:00
{ lib, stdenv, fetchurl, interactive ? false, readline ? null, ncurses ? null }:
2014-10-24 11:38:52 +02:00
assert interactive -> readline != null && ncurses != null;
stdenv.mkDerivation {
2015-05-10 10:59:01 +02:00
name = "sqlite-3.8.10.1";
src = fetchurl {
2015-05-10 10:59:01 +02:00
url = "http://sqlite.org/2015/sqlite-autoconf-3081001.tar.gz";
sha1 = "86bfed5752783fb24c051f3efac5972ce11023f0";
};
2014-10-24 11:38:52 +02:00
buildInputs = lib.optionals interactive [ readline ncurses ];
2012-09-14 19:16:47 +02:00
configureFlags = "--enable-threadsafe";
NIX_CFLAGS_COMPILE = "-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1";
meta = {
homepage = http://www.sqlite.org/;
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
platforms = stdenv.lib.platforms.unix;
2015-03-15 23:03:14 +01:00
maintainers = with stdenv.lib.maintainers; [ eelco np ];
};
}