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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook
2017-05-07 03:39:50 +01:00
, libuuid, zlib }:
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; };
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 03:39:50 +01:00
nativeBuildInputs = [ autoreconfHook ];
2017-05-07 03:39:50 +01:00
doCheck = true;
AUTOMATED_TESTING = true; # https://trac.xapian.org/changeset/8be35f5e1/git
2017-05-07 03:39:50 +01:00
patches = lib.optionals stdenv.isDarwin [ ./skip-flaky-darwin-test.patch ];
2019-02-17 14:39:29 +00:00
# the configure script thinks that Darwin has ___exp10
# but its not available on my systems (or hydra apparently)
postConfigure = lib.optionalString stdenv.isDarwin ''
substituteInPlace config.h \
--replace "#define HAVE___EXP10 1" "#undef HAVE___EXP10"
'';
meta = with lib; {
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;
maintainers = with maintainers; [ ];
2017-05-07 03:39:50 +01:00
platforms = platforms.unix;
};
};
in {
2022-01-11 00:48:39 +00:00
xapian_1_4 = generic "1.4.19" "sha256-H8pI/KbMNSbMS6k90ZT+nBMmhXt47c+zfmjQhtcUqcM=";
}