Merge pull request #47508 from dtzWill/fix/isync-zlib

isync: add zlib dep for compression support
This commit is contained in:
xeji
2018-09-29 08:17:20 +02:00
committed by GitHub

View File

@@ -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/;