aboutsummaryrefslogtreecommitdiff
path: root/pkgs/dovecot/plugins/fts_xapian/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/dovecot/plugins/fts_xapian/default.nix')
-rw-r--r--pkgs/dovecot/plugins/fts_xapian/default.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/pkgs/dovecot/plugins/fts_xapian/default.nix b/pkgs/dovecot/plugins/fts_xapian/default.nix
deleted file mode 100644
index 611d67b..0000000
--- a/pkgs/dovecot/plugins/fts_xapian/default.nix
+++ /dev/null
@@ -1,14 +0,0 @@
1{ stdenv, autoconf, automake, pkg-config, dovecot, libtool, xapian, icu, mylibs, sqlite }:
2
3stdenv.mkDerivation (mylibs.fetchedGithub ./fts-xapian.json // rec {
4 buildInputs = [ dovecot autoconf automake libtool pkg-config xapian icu sqlite ];
5 preConfigure = ''
6 export PANDOC=false
7 autoreconf -vi
8 '';
9 configureFlags = [
10 "--with-dovecot=${dovecot}/lib/dovecot"
11 "--without-dovecot-install-dirs"
12 "--with-moduledir=$(out)/lib/dovecot"
13 ];
14})