2017-05-07 03:39:50 +01:00
|
|
|
|
{ stdenv, fetchurl, autoreconfHook
|
|
|
|
|
, libuuid, zlib }:
|
2011-04-26 21:57:16 +01:00
|
|
|
|
|
2017-03-06 19:23:02 +00:00
|
|
|
|
let
|
|
|
|
|
generic = version: sha256: stdenv.mkDerivation rec {
|
|
|
|
|
name = "xapian-${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;
|
|
|
|
|
|
2019-02-17 14:39:29 +00:00
|
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [ ./skip-flaky-darwin-test.patch ];
|
|
|
|
|
|
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)
|
|
|
|
|
postConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
|
substituteInPlace config.h \
|
|
|
|
|
--replace "#define HAVE___EXP10 1" "#undef HAVE___EXP10"
|
|
|
|
|
'';
|
|
|
|
|
|
2017-05-07 03:39:50 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2017-03-06 19:23:02 +00:00
|
|
|
|
description = "Search engine library";
|
2018-01-05 19:42:46 +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 {
|
2017-05-07 03:39:50 +01:00
|
|
|
|
# xapian-ruby needs 1.2.22 as of 2017-05-06
|
2017-03-06 19:23:02 +00:00
|
|
|
|
xapian_1_2_22 = generic "1.2.22" "0zsji22n0s7cdnbgj0kpil05a6bgm5cfv0mvx12d8ydg7z58g6r6";
|
2019-03-04 01:15:18 +00:00
|
|
|
|
xapian_1_4 = generic "1.4.11" "01xwqljnp5afjf9097lyfbqc6x5bcqszfdkn9l1j86imwbrv45lz";
|
2011-04-26 21:57:16 +01:00
|
|
|
|
}
|