nixpkgs/pkgs/development/libraries/xapian/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2017-05-07 02:39:50 +00:00
{ stdenv, fetchurl, autoreconfHook
, libuuid, zlib }:
let
generic = version: sha256: stdenv.mkDerivation rec {
name = "xapian-${version}";
2017-05-07 02:39:50 +00:00
passthru = { inherit version; };
src = fetchurl {
url = "http://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz";
inherit sha256;
};
outputs = [ "out" "man" "doc" ];
buildInputs = [ libuuid zlib ];
2017-05-07 02:39:50 +00:00
nativeBuildInputs = [ autoreconfHook ];
2017-05-07 02:39:50 +00:00
doCheck = true;
# the configure script thinks that Darwin has ___exp10
# but its 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 02:39:50 +00:00
meta = with stdenv.lib; {
description = "Search engine library";
homepage = https://xapian.org/;
2017-05-07 02:39:50 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ chaoflow ];
platforms = platforms.unix;
};
};
in {
2017-05-07 02:39:50 +00:00
# xapian-ruby needs 1.2.22 as of 2017-05-06
xapian_1_2_22 = generic "1.2.22" "0zsji22n0s7cdnbgj0kpil05a6bgm5cfv0mvx12d8ydg7z58g6r6";
2018-01-01 09:27:06 +00:00
xapian_1_4 = generic "1.4.5" "0axhqrj202hbll9mcx1qdm8gsqj19216w3z02gyjbycxvr9gkdc5";
}