2021-01-21 17:00:13 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook
|
2017-05-07 03:39:50 +01:00
|
|
|
|
, libuuid, zlib }:
|
2011-04-26 21:57:16 +01:00
|
|
|
|
|
2017-03-06 19:23:02 +00:00
|
|
|
|
let
|
2019-08-13 22:52:01 +01:00
|
|
|
|
generic = version: sha256: stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
|
pname = "xapian";
|
|
|
|
|
inherit version;
|
2017-05-07 03:39:50 +01:00
|
|
|
|
passthru = { inherit version; };
|
2011-04-26 21:57:16 +01:00
|
|
|
|
|
2017-03-06 19:23:02 +00:00
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
|
url = "https://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz";
|
2017-03-06 19:23:02 +00:00
|
|
|
|
inherit sha256;
|
|
|
|
|
};
|
2011-04-26 21:57:16 +01:00
|
|
|
|
|
2017-07-11 10:14:14 +01:00
|
|
|
|
outputs = [ "out" "man" "doc" ];
|
2015-07-26 13:04:54 +01:00
|
|
|
|
|
2017-03-06 19:23:02 +00:00
|
|
|
|
buildInputs = [ libuuid zlib ];
|
2017-05-07 03:39:50 +01:00
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2011-04-26 21:57:16 +01:00
|
|
|
|
|
2017-05-07 03:39:50 +01:00
|
|
|
|
doCheck = true;
|
2020-07-04 18:08:49 +01:00
|
|
|
|
AUTOMATED_TESTING = true; # https://trac.xapian.org/changeset/8be35f5e1/git
|
2017-05-07 03:39:50 +01:00
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
|
patches = lib.optionals stdenv.isDarwin [ ./skip-flaky-darwin-test.patch ];
|
2019-02-17 14:39:29 +00:00
|
|
|
|
|
2017-05-14 05:45:02 +01:00
|
|
|
|
# the configure script thinks that Darwin has ___exp10
|
|
|
|
|
# but it’s not available on my systems (or hydra apparently)
|
2021-01-21 17:00:13 +00:00
|
|
|
|
postConfigure = lib.optionalString stdenv.isDarwin ''
|
2017-05-14 05:45:02 +01:00
|
|
|
|
substituteInPlace config.h \
|
|
|
|
|
--replace "#define HAVE___EXP10 1" "#undef HAVE___EXP10"
|
|
|
|
|
'';
|
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
|
meta = with lib; {
|
2017-03-06 19:23:02 +00:00
|
|
|
|
description = "Search engine library";
|
2020-02-27 16:45:44 +00:00
|
|
|
|
homepage = "https://xapian.org/";
|
2017-05-07 03:39:50 +01:00
|
|
|
|
license = licenses.gpl2Plus;
|
2019-02-22 15:14:13 +00:00
|
|
|
|
maintainers = with maintainers; [ ];
|
2017-05-07 03:39:50 +01:00
|
|
|
|
platforms = platforms.unix;
|
2017-03-06 19:23:02 +00:00
|
|
|
|
};
|
2011-04-26 21:57:16 +01:00
|
|
|
|
};
|
2017-03-06 19:23:02 +00:00
|
|
|
|
in {
|
2022-01-11 00:48:39 +00:00
|
|
|
|
xapian_1_4 = generic "1.4.19" "sha256-H8pI/KbMNSbMS6k90ZT+nBMmhXt47c+zfmjQhtcUqcM=";
|
2011-04-26 21:57:16 +01:00
|
|
|
|
}
|