dovecot_fts_xapian: cleanup

This commit is contained in:
Sandro Jäckel 2024-04-05 19:03:08 +02:00
parent fd281bd6b7
commit e1edaedd8a
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,5 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, sqlite, pkg-config, dovecot, libtool, xapian, icu64 }:
{ lib, stdenv, fetchFromGitHub, autoreconfHook, sqlite, pkg-config, dovecot, xapian, icu }:
stdenv.mkDerivation rec {
pname = "dovecot-fts-xapian";
version = "1.7.10";
@ -10,13 +11,12 @@ stdenv.mkDerivation rec {
sha256 = "sha256-Gzr0365lY9wAvmXeVungD2z44WHC+AI0a1xLWy3mCK4=";
};
buildInputs = [ dovecot xapian icu64 sqlite ];
buildInputs = [ xapian icu sqlite ];
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
preConfigure = ''
export PANDOC=false
autoreconf -vi
'';
configureFlags = [