1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

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
commit abd222f016
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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