dclib: fix build after libxml2 update

- add zlib to buildInputs as libxml2 no longer propagates it
This commit is contained in:
ghpzin 2024-10-15 16:33:45 +03:00
parent 0741d0e0cf
commit b036dc5b8e
No known key found for this signature in database

View File

@ -1,4 +1,4 @@
{lib, stdenv, fetchurl, libxml2, openssl, bzip2}:
{lib, stdenv, fetchurl, libxml2, openssl, bzip2, zlib}:
stdenv.mkDerivation rec {
pname = "dclib";
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "02jdzm5hqzs1dv2rd596vgpcjaapm55pqqapz5m94l30v4q72rfc";
};
buildInputs = [libxml2 openssl bzip2];
buildInputs = [libxml2 openssl bzip2 zlib];
meta = with lib; {
description = "Peer-to-Peer file sharing client";