fix the problem of missing expat in a few packages

This commit is contained in:
Vladimír Čunát
2013-02-11 18:34:40 +01:00
parent b2a07ce189
commit 684f215b4f
3 changed files with 6 additions and 6 deletions
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau
, libXdmcp, lcms2, libiptcdata
, libXdmcp, lcms2, libiptcdata, expat
, mercurial # Not really needed for anything, but it fails if it does not find 'hg'
}:
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ pkgconfig gtk cmake pixman libpthreadstubs gtkmm libXau libXdmcp
lcms2 libiptcdata mercurial ];
lcms2 libiptcdata expat mercurial ];
# Disable the use of the RAWZOR propietary libraries
cmakeFlags = [ "-DWITH_RAWZOR=OFF" ];