2021-01-23 07:34:59 +00:00
|
|
|
{ lib, stdenv, fetchurl, zlib, interactive ? false, readline ? null, ncurses ? null
|
|
|
|
, python3Packages
|
2021-08-28 20:39:46 +01:00
|
|
|
, enableDeserialize ? false
|
2021-01-23 07:34:59 +00:00
|
|
|
}:
|
2006-04-22 19:08:37 +01:00
|
|
|
|
2014-10-24 10:38:52 +01:00
|
|
|
assert interactive -> readline != null && ncurses != null;
|
2010-02-04 16:07:15 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
with lib;
|
2008-06-17 10:39:38 +01:00
|
|
|
|
2018-05-22 22:47:18 +01:00
|
|
|
let
|
2021-01-21 17:00:13 +00:00
|
|
|
archiveVersion = import ./archive-version.nix lib;
|
2018-05-22 22:47:18 +01:00
|
|
|
in
|
|
|
|
|
2018-05-22 21:44:05 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sqlite";
|
2021-05-24 10:46:46 +01:00
|
|
|
version = "3.35.5";
|
2018-05-22 21:44:05 +01:00
|
|
|
|
2020-09-19 16:11:50 +01:00
|
|
|
# NB! Make sure to update ./tools.nix src (in the same directory).
|
2018-05-27 06:43:26 +01:00
|
|
|
src = fetchurl {
|
2021-01-20 23:47:53 +00:00
|
|
|
url = "https://sqlite.org/2021/sqlite-autoconf-${archiveVersion version}.tar.gz";
|
2021-05-24 10:46:46 +01:00
|
|
|
sha256 = "9StypcMZw+UW7XqS4SMTmm6Hrwii3EPXdXck9hMubbA=";
|
2008-06-17 10:39:38 +01:00
|
|
|
};
|
2008-08-29 14:53:28 +01:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "bin" "dev" "out" ];
|
2017-07-05 15:04:54 +01:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
2015-10-13 21:30:30 +01:00
|
|
|
|
2018-05-27 06:43:26 +01:00
|
|
|
buildInputs = [ zlib ] ++ optionals interactive [ readline ncurses ];
|
2012-09-14 18:16:47 +01:00
|
|
|
|
2021-05-24 10:46:46 +01:00
|
|
|
# required for aarch64 but applied for all arches for simplicity
|
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs configure
|
|
|
|
'';
|
|
|
|
|
2018-05-27 06:43:26 +01:00
|
|
|
configureFlags = [ "--enable-threadsafe" ] ++ optional interactive "--enable-readline";
|
2010-02-03 10:51:11 +00:00
|
|
|
|
2021-08-28 20:39:46 +01:00
|
|
|
NIX_CFLAGS_COMPILE = toString ([
|
2015-08-02 03:08:31 +01:00
|
|
|
"-DSQLITE_ENABLE_COLUMN_METADATA"
|
|
|
|
"-DSQLITE_ENABLE_DBSTAT_VTAB"
|
2015-10-19 01:22:35 +01:00
|
|
|
"-DSQLITE_ENABLE_JSON1"
|
2015-08-02 03:08:31 +01:00
|
|
|
"-DSQLITE_ENABLE_FTS3"
|
|
|
|
"-DSQLITE_ENABLE_FTS3_PARENTHESIS"
|
2016-06-19 01:09:33 +01:00
|
|
|
"-DSQLITE_ENABLE_FTS3_TOKENIZER"
|
2015-08-02 03:08:31 +01:00
|
|
|
"-DSQLITE_ENABLE_FTS4"
|
2016-10-16 22:17:55 +01:00
|
|
|
"-DSQLITE_ENABLE_FTS5"
|
2015-08-02 03:08:31 +01:00
|
|
|
"-DSQLITE_ENABLE_RTREE"
|
|
|
|
"-DSQLITE_ENABLE_STMT_SCANSTATUS"
|
|
|
|
"-DSQLITE_ENABLE_UNLOCK_NOTIFY"
|
|
|
|
"-DSQLITE_SOUNDEX"
|
|
|
|
"-DSQLITE_SECURE_DELETE"
|
2018-03-04 14:10:27 +00:00
|
|
|
"-DSQLITE_MAX_VARIABLE_NUMBER=250000"
|
|
|
|
"-DSQLITE_MAX_EXPR_DEPTH=10000"
|
2021-08-28 20:39:46 +01:00
|
|
|
] ++ lib.optionals enableDeserialize [
|
|
|
|
# Can be removed in v3.36+, as this will become the default
|
|
|
|
"-DSQLITE_ENABLE_DESERIALIZE"
|
|
|
|
]);
|
2015-08-02 03:08:31 +01: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 22:17:55 +01:00
|
|
|
# Necessary for FTS5 on Linux
|
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lm"
|
|
|
|
|
2018-05-27 06:43:26 +01:00
|
|
|
echo ""
|
2015-08-02 03:08:31 +01:00
|
|
|
echo "NIX_CFLAGS_COMPILE = $NIX_CFLAGS_COMPILE"
|
2018-05-27 06:43:26 +01:00
|
|
|
echo ""
|
2015-08-02 03:08:31 +01:00
|
|
|
'';
|
2009-07-02 14:56:06 +01:00
|
|
|
|
2018-05-29 15:20:43 +01: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 20:03:10 +01:00
|
|
|
doCheck = false; # fails to link against tcl
|
|
|
|
|
2021-01-23 07:34:59 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (python3Packages) sqlalchemy;
|
|
|
|
};
|
|
|
|
|
2008-06-17 10:39:38 +01:00
|
|
|
meta = {
|
|
|
|
description = "A self-contained, serverless, zero-configuration, transactional SQL database engine";
|
2020-04-01 02:11:51 +01:00
|
|
|
downloadPage = "https://sqlite.org/download.html";
|
2020-03-03 19:46:27 +00:00
|
|
|
homepage = "https://www.sqlite.org/";
|
2018-08-11 13:32:05 +01:00
|
|
|
license = licenses.publicDomain;
|
2018-05-22 21:44:05 +01:00
|
|
|
maintainers = with maintainers; [ eelco np ];
|
2018-10-17 03:57:53 +01:00
|
|
|
platforms = platforms.unix ++ platforms.windows;
|
2007-03-21 19:25:58 +00:00
|
|
|
};
|
2006-04-22 19:08:37 +01:00
|
|
|
}
|