2020-06-13 11:08:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoconf, automake, pkg-config, dovecot, libtool, xapian, icu64, sqlite }:
|
2020-06-14 11:14:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-06-13 11:08:47 +00:00
|
|
|
pname = "fts-xapian";
|
2020-06-14 11:14:58 +00:00
|
|
|
version = "1.3.2";
|
2020-06-13 11:08:47 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "grosjo";
|
|
|
|
repo = "fts-xapian";
|
2020-06-14 11:14:58 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "12rgchx1ikwxbhdgychcfrhfnmx1rzl1l5zhmzchjkh44cwmpdbh";
|
2020-06-13 11:08:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ dovecot xapian icu64 sqlite ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export PANDOC=false
|
|
|
|
autoreconf -vi
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-dovecot=${dovecot}/lib/dovecot"
|
|
|
|
"--without-dovecot-install-dirs"
|
|
|
|
"--with-moduledir=$(out)/lib/dovecot"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://github.com/grosjo/fts-xapian";
|
|
|
|
description = "Dovecot FTS plugin based on Xapian";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ julm ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|