mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
isync: add zlib dep for compression support
(cherry picked from commit f26f2c8b6f755708a8bfa7aa4f56c52a2c751df6)
This commit is contained in:
parent
14dbccec78
commit
0a15643401
|
@ -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/;
|
||||
|
|
Loading…
Reference in a new issue