libcdr: add zlib to buildInputs

> checking for zlib... no
configure: error: Package requirements (zlib) were not met:

authored by Reno Dakota and committed by Alyssa Ross 94be6c1f 28758028

+2 -2
+2 -2
pkgs/development/libraries/libcdr/default.nix
··· 1 - { lib, stdenv, fetchurl, libwpg, libwpd, lcms, pkg-config, librevenge, icu, boost, cppunit }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcdr"; ··· 11 12 strictDeps = true; 13 14 - buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit ]; 15 16 nativeBuildInputs = [ pkg-config ]; 17
··· 1 + { lib, stdenv, fetchurl, libwpg, libwpd, lcms, pkg-config, librevenge, icu, boost, cppunit, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "libcdr"; ··· 11 12 strictDeps = true; 13 14 + buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit zlib ]; 15 16 nativeBuildInputs = [ pkg-config ]; 17