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

43 lines
1.3 KiB
Nix
Raw Normal View History

2017-05-07 04:39:50 +02:00
{ stdenv, fetchurl, autoreconfHook
, libuuid, zlib }:
let
2019-08-13 23:52:01 +02:00
generic = version: sha256: stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "xapian";
inherit version;
2017-05-07 04:39:50 +02:00
passthru = { inherit version; };
src = fetchurl {
url = "https://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz";
inherit sha256;
};
outputs = [ "out" "man" "doc" ];
buildInputs = [ libuuid zlib ];
2017-05-07 04:39:50 +02:00
nativeBuildInputs = [ autoreconfHook ];
2017-05-07 04:39:50 +02:00
doCheck = true;
AUTOMATED_TESTING = true; # https://trac.xapian.org/changeset/8be35f5e1/git
2017-05-07 04:39:50 +02:00
2019-02-17 15:39:29 +01:00
patches = stdenv.lib.optionals stdenv.isDarwin [ ./skip-flaky-darwin-test.patch ];
# 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 04:39:50 +02:00
meta = with stdenv.lib; {
description = "Search engine library";
2020-02-27 17:45:44 +01:00
homepage = "https://xapian.org/";
2017-05-07 04:39:50 +02:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ];
2017-05-07 04:39:50 +02:00
platforms = platforms.unix;
};
};
in {
xapian_1_4 = generic "1.4.16" "4937f2f49ff27e39a42150e928c8b45877b0bf456510f0785f50159a5cb6bf70";
}