Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
81 lines
1.9 KiB
Nix
81 lines
1.9 KiB
Nix
{
|
||
lib,
|
||
stdenv,
|
||
fetchurl,
|
||
autoreconfHook,
|
||
libuuid,
|
||
zlib,
|
||
|
||
# tests
|
||
mu,
|
||
perlPackages,
|
||
python3,
|
||
xapian-omega,
|
||
}:
|
||
|
||
let
|
||
generic =
|
||
version: hash:
|
||
stdenv.mkDerivation {
|
||
pname = "xapian";
|
||
inherit version;
|
||
passthru = { inherit version; };
|
||
|
||
src = fetchurl {
|
||
url = "https://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz";
|
||
inherit hash;
|
||
};
|
||
|
||
outputs = [
|
||
"out"
|
||
"man"
|
||
"doc"
|
||
];
|
||
|
||
buildInputs = [
|
||
libuuid
|
||
zlib
|
||
];
|
||
nativeBuildInputs = [ autoreconfHook ];
|
||
|
||
enableParallelBuilding = true;
|
||
|
||
doCheck = true;
|
||
|
||
env = {
|
||
AUTOMATED_TESTING = true; # https://trac.xapian.org/changeset/8be35f5e1/git
|
||
}
|
||
// lib.optionalAttrs stdenv.hostPlatform.is32bit {
|
||
NIX_CFLAGS_COMPILE = "-fpermissive";
|
||
};
|
||
|
||
# the configure script thinks that Darwin has ___exp10
|
||
# but it’s not available on my systems (or hydra apparently)
|
||
postConfigure = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
||
substituteInPlace config.h \
|
||
--replace "#define HAVE___EXP10 1" "#undef HAVE___EXP10"
|
||
'';
|
||
|
||
passthru.tests = {
|
||
inherit mu xapian-omega;
|
||
inherit (perlPackages) Xapian;
|
||
python-xapian = python3.pkgs.xapian;
|
||
};
|
||
|
||
meta = with lib; {
|
||
description = "Search engine library";
|
||
homepage = "https://xapian.org/";
|
||
changelog = "https://xapian.org/docs/xapian-core-${version}/NEWS";
|
||
license = licenses.gpl2Plus;
|
||
maintainers = with maintainers; [ matthiasbeyer ];
|
||
platforms = platforms.unix;
|
||
};
|
||
};
|
||
in
|
||
{
|
||
# Don't forget to change the hashes in xapian-omega and
|
||
# python3Packages.xapian. They inherit the version from this package, and
|
||
# should always be built with the equivalent xapian version.
|
||
xapian_1_4 = generic "1.4.27" "sha256-vLyZz78WCAEZwlcfwpZ5T1Ob1ULKOSbxfCmZYAgwq2E=";
|
||
}
|