2022-10-06 18:32:54 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, fetchurl
|
|
|
|
|
, autoreconfHook
|
|
|
|
|
, libuuid
|
|
|
|
|
, zlib
|
|
|
|
|
|
|
|
|
|
# tests
|
|
|
|
|
, mu
|
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
let
|
2022-07-18 16:21:45 +00:00
|
|
|
|
generic = version: hash: stdenv.mkDerivation {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
pname = "xapian";
|
|
|
|
|
inherit version;
|
|
|
|
|
passthru = { inherit version; };
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz";
|
2022-07-18 16:21:45 +00:00
|
|
|
|
inherit hash;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
outputs = [ "out" "man" "doc" ];
|
|
|
|
|
|
|
|
|
|
buildInputs = [ libuuid zlib ];
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
doCheck = true;
|
2024-01-25 14:12:00 +00:00
|
|
|
|
|
|
|
|
|
env = {
|
|
|
|
|
AUTOMATED_TESTING = true; # https://trac.xapian.org/changeset/8be35f5e1/git
|
|
|
|
|
} // lib.optionalAttrs stdenv.is32bit {
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-fpermissive";
|
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
# the configure script thinks that Darwin has ___exp10
|
|
|
|
|
# but it’s not available on my systems (or hydra apparently)
|
2021-02-05 17:12:51 +00:00
|
|
|
|
postConfigure = lib.optionalString stdenv.isDarwin ''
|
2020-04-24 23:36:52 +00:00
|
|
|
|
substituteInPlace config.h \
|
|
|
|
|
--replace "#define HAVE___EXP10 1" "#undef HAVE___EXP10"
|
|
|
|
|
'';
|
|
|
|
|
|
2022-10-06 18:32:54 +00:00
|
|
|
|
passthru.tests = {
|
|
|
|
|
inherit mu;
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "Search engine library";
|
|
|
|
|
homepage = "https://xapian.org/";
|
2022-10-06 18:32:54 +00:00
|
|
|
|
changelog = "https://xapian.org/docs/xapian-core-${version}/NEWS";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
license = licenses.gpl2Plus;
|
2023-11-16 04:20:00 +00:00
|
|
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
in {
|
2022-07-18 16:21:45 +00:00
|
|
|
|
# Don't forget to change the hashes in xapian-omega and
|
|
|
|
|
# python3Packages.xapian. They inherit the version from this package, and
|
|
|
|
|
# should always be built with the equivalent xapian version.
|
2024-04-21 15:54:59 +00:00
|
|
|
|
xapian_1_4 = generic "1.4.25" "sha256-DJnf3YF1cctWibxBKn4CFAeTgxPzjqOnD6O/hkEGCO4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}
|