2021-01-22 23:34:59 -08:00
|
|
|
{ lib, stdenv, fetchurl, zlib, interactive ? false, readline ? null, ncurses ? null
|
|
|
|
, python3Packages
|
|
|
|
}:
|
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
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
with lib;
|
2008-06-17 02:39:38 -07:00
|
|
|
|
2018-05-22 14:47:18 -07:00
|
|
|
let
|
2021-01-21 09:00:13 -08:00
|
|
|
archiveVersion = import ./archive-version.nix lib;
|
2018-05-22 14:47:18 -07:00
|
|
|
in
|
|
|
|
|
2018-05-22 13:44:05 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "sqlite";
|
2021-05-24 02:46:46 -07:00
|
|
|
version = "3.35.5";
|
2018-05-22 13:44:05 -07:00
|
|
|
|
2020-09-19 08:11:50 -07:00
|
|
|
# NB! Make sure to update ./tools.nix src (in the same directory).
|
2018-05-26 22:43:26 -07:00
|
|
|
src = fetchurl {
|
2021-01-20 15:47:53 -08:00
|
|
|
url = "https://sqlite.org/2021/sqlite-autoconf-${archiveVersion version}.tar.gz";
|
2021-05-24 02:46:46 -07:00
|
|
|
sha256 = "9StypcMZw+UW7XqS4SMTmm6Hrwii3EPXdXck9hMubbA=";
|
2008-06-17 02:39:38 -07:00
|
|
|
};
|
2008-08-29 06:53:28 -07:00
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "bin" "dev" "out" ];
|
2017-07-05 07:04:54 -07:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
2015-10-13 13:30:30 -07:00
|
|
|
|
2018-05-26 22:43:26 -07:00
|
|
|
buildInputs = [ zlib ] ++ optionals interactive [ readline ncurses ];
|
2012-09-14 10:16:47 -07:00
|
|
|
|
2021-05-24 02:46:46 -07:00
|
|
|
# required for aarch64 but applied for all arches for simplicity
|
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs configure
|
|
|
|
'';
|
|
|
|
|
2018-05-26 22:43:26 -07:00
|
|
|
configureFlags = [ "--enable-threadsafe" ] ++ optional interactive "--enable-readline";
|
2010-02-03 02:51:11 -08:00
|
|
|
|
2019-10-29 16:53:51 -07:00
|
|
|
NIX_CFLAGS_COMPILE = toString [
|
2015-08-01 19:08:31 -07:00
|
|
|
"-DSQLITE_ENABLE_COLUMN_METADATA"
|
|
|
|
"-DSQLITE_ENABLE_DBSTAT_VTAB"
|
2015-10-18 17:22:35 -07:00
|
|
|
"-DSQLITE_ENABLE_JSON1"
|
2015-08-01 19:08:31 -07:00
|
|
|
"-DSQLITE_ENABLE_FTS3"
|
|
|
|
"-DSQLITE_ENABLE_FTS3_PARENTHESIS"
|
2016-06-18 17:09:33 -07:00
|
|
|
"-DSQLITE_ENABLE_FTS3_TOKENIZER"
|
2015-08-01 19:08:31 -07:00
|
|
|
"-DSQLITE_ENABLE_FTS4"
|
2016-10-16 14:17:55 -07:00
|
|
|
"-DSQLITE_ENABLE_FTS5"
|
2015-08-01 19:08:31 -07:00
|
|
|
"-DSQLITE_ENABLE_RTREE"
|
|
|
|
"-DSQLITE_ENABLE_STMT_SCANSTATUS"
|
|
|
|
"-DSQLITE_ENABLE_UNLOCK_NOTIFY"
|
|
|
|
"-DSQLITE_SOUNDEX"
|
|
|
|
"-DSQLITE_SECURE_DELETE"
|
2018-03-04 06:10:27 -08:00
|
|
|
"-DSQLITE_MAX_VARIABLE_NUMBER=250000"
|
|
|
|
"-DSQLITE_MAX_EXPR_DEPTH=10000"
|
2015-08-01 19:08:31 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
# Test for features which may not be available at compile time
|
|
|
|
preBuild = ''
|
|
|
|
# Use pread(), pread64(), pwrite(), pwrite64() functions for better performance if they are available.
|
|
|
|
if cc -Werror=implicit-function-declaration -x c - -o "$TMPDIR/pread_pwrite_test" <<< \
|
|
|
|
''$'#include <unistd.h>\nint main()\n{\n pread(0, NULL, 0, 0);\n pwrite(0, NULL, 0, 0);\n return 0;\n}'; then
|
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DUSE_PREAD"
|
|
|
|
fi
|
|
|
|
if cc -Werror=implicit-function-declaration -x c - -o "$TMPDIR/pread64_pwrite64_test" <<< \
|
|
|
|
''$'#include <unistd.h>\nint main()\n{\n pread64(0, NULL, 0, 0);\n pwrite64(0, NULL, 0, 0);\n return 0;\n}'; then
|
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DUSE_PREAD64"
|
|
|
|
elif cc -D_LARGEFILE64_SOURCE -Werror=implicit-function-declaration -x c - -o "$TMPDIR/pread64_pwrite64_test" <<< \
|
|
|
|
''$'#include <unistd.h>\nint main()\n{\n pread64(0, NULL, 0, 0);\n pwrite64(0, NULL, 0, 0);\n return 0;\n}'; then
|
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -DUSE_PREAD64 -D_LARGEFILE64_SOURCE"
|
|
|
|
fi
|
|
|
|
|
2016-10-16 14:17:55 -07:00
|
|
|
# Necessary for FTS5 on Linux
|
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lm"
|
|
|
|
|
2018-05-26 22:43:26 -07:00
|
|
|
echo ""
|
2015-08-01 19:08:31 -07:00
|
|
|
echo "NIX_CFLAGS_COMPILE = $NIX_CFLAGS_COMPILE"
|
2018-05-26 22:43:26 -07:00
|
|
|
echo ""
|
2015-08-01 19:08:31 -07:00
|
|
|
'';
|
2009-07-02 06:56:06 -07:00
|
|
|
|
2018-05-29 07:20:43 -07:00
|
|
|
postInstall = ''
|
|
|
|
# Do not contaminate dependent libtool-based projects with sqlite dependencies.
|
|
|
|
sed -i $out/lib/libsqlite3.la -e "s/dependency_libs=.*/dependency_libs='''/"
|
|
|
|
'';
|
|
|
|
|
2018-08-08 12:03:10 -07:00
|
|
|
doCheck = false; # fails to link against tcl
|
|
|
|
|
2021-01-22 23:34:59 -08:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (python3Packages) sqlalchemy;
|
|
|
|
};
|
|
|
|
|
2008-06-17 02:39:38 -07:00
|
|
|
meta = {
|
|
|
|
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
|
2020-03-31 18:11:51 -07:00
|
|
|
downloadPage = "https://sqlite.org/download.html";
|
2020-03-03 11:46:27 -08:00
|
|
|
homepage = "https://www.sqlite.org/";
|
2018-08-11 05:32:05 -07:00
|
|
|
license = licenses.publicDomain;
|
2018-05-22 13:44:05 -07:00
|
|
|
maintainers = with maintainers; [ eelco np ];
|
2018-10-16 19:57:53 -07:00
|
|
|
platforms = platforms.unix ++ platforms.windows;
|
2007-03-21 12:25:58 -07:00
|
|
|
};
|
2006-04-22 11:08:37 -07:00
|
|
|
}
|