libe-book: Add missing zlib dependency.

Since 287ec76, zlib is no longer propagated by libxml, so we need to add
it as a direct dependency.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2015-05-12 10:38:15 +02:00
parent e370872683
commit 7d1a4f9e3f
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -1,4 +1,7 @@
{stdenv, fetchurl, gperf, pkgconfig, librevenge, libxml2, boost, icu, cppunit}:
{ stdenv, fetchurl, gperf, pkgconfig, librevenge, libxml2, boost, icu
, cppunit, zlib
}:
let
s = # Generated upstream information
rec {
@ -10,7 +13,7 @@ let
sha256="1v48pd32r2pfysr3a3igc4ivcf6vvb26jq4pdkcnq75p70alp2bz";
};
buildInputs = [
gperf pkgconfig librevenge libxml2 boost icu cppunit
gperf pkgconfig librevenge libxml2 boost icu cppunit zlib
];
in
stdenv.mkDerivation {