mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 20:11:43 +03: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 New Issue
Block a user