Merge pull request #301886 from SuperSandro2000/dovecot_fts_xapian

dovecot_fts_xapian: cleanup, fix hash
This commit is contained in:
Guillaume Girol 2024-04-07 16:19:23 +02:00 committed by GitHub
commit 1dd763ef6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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 { stdenv.mkDerivation rec {
pname = "dovecot-fts-xapian"; pname = "dovecot-fts-xapian";
version = "1.7.10"; version = "1.7.10";
@ -7,16 +8,15 @@ stdenv.mkDerivation rec {
owner = "grosjo"; owner = "grosjo";
repo = "fts-xapian"; repo = "fts-xapian";
rev = version; rev = version;
sha256 = "sha256-Gzr0365lY9wAvmXeVungD2z44WHC+AI0a1xLWy3mCK4="; hash = "sha256-Yd14kla33qAx4Hy0ZdE08javvki3t+hCEc3OTO6YfkQ=";
}; };
buildInputs = [ dovecot xapian icu64 sqlite ]; buildInputs = [ xapian icu sqlite ];
nativeBuildInputs = [ autoconf automake libtool pkg-config ]; nativeBuildInputs = [ autoreconfHook pkg-config ];
preConfigure = '' preConfigure = ''
export PANDOC=false export PANDOC=false
autoreconf -vi
''; '';
configureFlags = [ configureFlags = [