summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXinglu Chen <public@yoctocell.xyz>2021-01-28 21:04:08 +0100
committerXinglu Chen <public@yoctocell.xyz>2021-01-31 20:24:46 +0100
commit7faeb77f300ced335f14f9878f0a830df20d7ee3 (patch)
tree691188bd4a48f9fcfbdffd944fcd949ad9b596e9
parentc7cfce17b787ec0eb96344366fcff476980cc588 (diff)
dovecot_fts_xapian: 1.3.1 -> 1.4.7
Update to latest release. https://github.com/grosjo/fts-xapian/releases
-rw-r--r--pkgs/servers/mail/dovecot/plugins/fts_xapian/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/servers/mail/dovecot/plugins/fts_xapian/default.nix b/pkgs/servers/mail/dovecot/plugins/fts_xapian/default.nix
index 0b61a779c483..eb3f8bf19cb7 100644
--- a/pkgs/servers/mail/dovecot/plugins/fts_xapian/default.nix
+++ b/pkgs/servers/mail/dovecot/plugins/fts_xapian/default.nix
@@ -1,16 +1,16 @@
-{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, dovecot, libtool, xapian, icu64, sqlite }:
-stdenv.mkDerivation {
+{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, dovecot, libtool, xapian, icu64 }:
+stdenv.mkDerivation rec {
pname = "fts-xapian";
- version = "1.3.1";
+ version = "1.4.7";
src = fetchFromGitHub {
owner = "grosjo";
repo = "fts-xapian";
- rev = "1.3.1";
- sha256 = "10yl5fyfbx2ijqckx13vbmzj9mpm5pkh8qzichbdgplrzm738q43";
+ rev = version;
+ sha256 = "K2d1FFAilIggNuP0e698s+9bN08x2s/0Jryp7pmeixc=";
};
- buildInputs = [ dovecot xapian icu64 sqlite ];
+ buildInputs = [ dovecot xapian icu64 ];
nativeBuildInputs = [ autoconf automake libtool pkg-config ];