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:
commit
abd222f016
|
@ -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