forked from mirrors/nixpkgs
37 lines
994 B
Nix
37 lines
994 B
Nix
{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, dovecot, libtool, xapian, icu64 }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "fts-xapian";
|
|
version = "1.4.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grosjo";
|
|
repo = "fts-xapian";
|
|
rev = version;
|
|
sha256 = "0p4ps9h24vr9bldrcf9cdx6l4rdz5i8zyc58qp10h7cc3jilwddy";
|
|
};
|
|
|
|
buildInputs = [ dovecot xapian icu64 ];
|
|
|
|
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 lib; {
|
|
homepage = "https://github.com/grosjo/fts-xapian";
|
|
description = "Dovecot FTS plugin based on Xapian";
|
|
changelog = "https://github.com/grosjo/fts-xapian/releases";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ julm symphorien ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|