2016-09-03 15:42:53 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, xapian, perl, pcre, zlib, libmagic }:
|
2015-12-04 16:55:49 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "xapian-omega";
|
2017-05-07 04:39:50 +02:00
|
|
|
inherit (xapian) version;
|
2015-12-04 16:55:49 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz";
|
2018-01-01 10:27:06 +01:00
|
|
|
sha256 = "0zji8ckp4h5xdy2wbir3lvk680w1g1l4h5swmaxsx7ah12lkrjcr";
|
2015-12-04 16:55:49 +01:00
|
|
|
};
|
|
|
|
|
2017-05-07 04:39:50 +02:00
|
|
|
buildInputs = [ xapian perl pcre zlib libmagic ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-12-04 16:55:49 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Indexer and CGI search front-end built on Xapian library";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://xapian.org/";
|
2015-12-04 16:55:49 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.unix;
|
2015-12-04 16:55:49 +01:00
|
|
|
};
|
|
|
|
}
|