2017-05-07 04:39:50 +02:00
|
|
|
|
{ stdenv, fetchurl, autoreconfHook
|
|
|
|
|
, libuuid, zlib }:
|
2011-04-26 22:57:16 +02:00
|
|
|
|
|
2017-03-06 20:23:02 +01:00
|
|
|
|
let
|
|
|
|
|
generic = version: sha256: stdenv.mkDerivation rec {
|
|
|
|
|
name = "xapian-${version}";
|
2017-05-07 04:39:50 +02:00
|
|
|
|
passthru = { inherit version; };
|
2011-04-26 22:57:16 +02:00
|
|
|
|
|
2017-03-06 20:23:02 +01:00
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
|
url = "https://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz";
|
2017-03-06 20:23:02 +01:00
|
|
|
|
inherit sha256;
|
|
|
|
|
};
|
2011-04-26 22:57:16 +02:00
|
|
|
|
|
2017-07-11 11:14:14 +02:00
|
|
|
|
outputs = [ "out" "man" "doc" ];
|
2015-07-26 14:04:54 +02:00
|
|
|
|
|
2017-03-06 20:23:02 +01:00
|
|
|
|
buildInputs = [ libuuid zlib ];
|
2017-05-07 04:39:50 +02:00
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2011-04-26 22:57:16 +02:00
|
|
|
|
|
2017-05-07 04:39:50 +02:00
|
|
|
|
doCheck = true;
|
|
|
|
|
|
2017-05-14 06:45:02 +02: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 04:39:50 +02:00
|
|
|
|
meta = with stdenv.lib; {
|
2017-03-06 20:23:02 +01:00
|
|
|
|
description = "Search engine library";
|
2018-01-05 20:42:46 +01:00
|
|
|
|
homepage = https://xapian.org/;
|
2017-05-07 04:39:50 +02:00
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
|
maintainers = with maintainers; [ chaoflow ];
|
|
|
|
|
platforms = platforms.unix;
|
2017-03-06 20:23:02 +01:00
|
|
|
|
};
|
2011-04-26 22:57:16 +02:00
|
|
|
|
};
|
2017-03-06 20:23:02 +01:00
|
|
|
|
in {
|
2017-05-07 04:39:50 +02:00
|
|
|
|
# xapian-ruby needs 1.2.22 as of 2017-05-06
|
2017-03-06 20:23:02 +01:00
|
|
|
|
xapian_1_2_22 = generic "1.2.22" "0zsji22n0s7cdnbgj0kpil05a6bgm5cfv0mvx12d8ydg7z58g6r6";
|
2018-11-04 12:51:13 +01:00
|
|
|
|
xapian_1_4 = generic "1.4.9" "1k7m7m9jld96k16ansfw2w3c354pvd8ibhnrb6dw012g06fw7sfd";
|
2011-04-26 22:57:16 +02:00
|
|
|
|
}
|