about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-09-28 22:46:44 -0500
committerWill Dietz <w@wdtz.org>2018-09-28 22:58:34 -0500
commit0a156434012133040ec783f81e3594346ac70317 (patch)
tree83189b8471665fc3055d0b9d1c50a6c166ea4077 /pkgs/tools
parent14dbccec78616d9020cb488297446f1c0a92af3d (diff)
downloadnixlib-0a156434012133040ec783f81e3594346ac70317.tar
nixlib-0a156434012133040ec783f81e3594346ac70317.tar.gz
nixlib-0a156434012133040ec783f81e3594346ac70317.tar.bz2
nixlib-0a156434012133040ec783f81e3594346ac70317.tar.lz
nixlib-0a156434012133040ec783f81e3594346ac70317.tar.xz
nixlib-0a156434012133040ec783f81e3594346ac70317.tar.zst
nixlib-0a156434012133040ec783f81e3594346ac70317.zip
isync: add zlib dep for compression support
(cherry picked from commit f26f2c8b6f755708a8bfa7aa4f56c52a2c751df6)
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/isync/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/isync/default.nix b/pkgs/tools/networking/isync/default.nix
index 581a45eaebb9..5bdbe17e4d10 100644
--- a/pkgs/tools/networking/isync/default.nix
+++ b/pkgs/tools/networking/isync/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl, perl }:
+{ fetchurl, stdenv, openssl, pkgconfig, db, zlib, cyrus_sasl, perl }:
 
 stdenv.mkDerivation rec {
   name = "isync-1.3.0";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ pkgconfig perl ];
-  buildInputs = [ openssl db cyrus_sasl ];
+  buildInputs = [ openssl db cyrus_sasl zlib ];
 
   meta = with stdenv.lib; {
     homepage = http://isync.sourceforge.net/;