mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "isync-1.3.0";
|
name = "isync-1.3.0";
|
||||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig perl ];
|
nativeBuildInputs = [ pkgconfig perl ];
|
||||||
buildInputs = [ openssl db cyrus_sasl ];
|
buildInputs = [ openssl db cyrus_sasl zlib ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://isync.sourceforge.net/;
|
homepage = http://isync.sourceforge.net/;
|
||||||
|
|
Loading…
Reference in a new issue