about summary refs log tree commit diff
path: root/pkgs/servers/mail/dovecot/plugins/fts_xapian/default.nix
blob: 8a0f2d4efab2ddb68b5b333e7e07fd629d12f751 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchFromGitHub, autoconf, automake, pkg-config, dovecot, libtool, xapian, icu64, sqlite }:
stdenv.mkDerivation {
  pname = "fts-xapian";
  version = "1.3.1";

  src = fetchFromGitHub {
    owner = "grosjo";
    repo = "fts-xapian";
    rev = "1.3.1";
    sha256 = "10yl5fyfbx2ijqckx13vbmzj9mpm5pkh8qzichbdgplrzm738q43";
  };

  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;
  };
}