Updated log4cxx to version 0.10.0 by using a patch from Andrew Morsillo

svn path=/nixpkgs/trunk/; revision=14039
This commit is contained in:
Sander van der Burg 2009-02-12 14:52:23 +00:00
parent 7590daad42
commit 09bb1e1116
2 changed files with 9 additions and 8 deletions

View file

@ -1,11 +1,11 @@
args: with args;
{stdenv, fetchurl, autoconf, automake, libtool, libxml2, cppunit, boost,
apr, aprutil, db45, expat}:
stdenv.mkDerivation {
name = "log4cxx-0.9.7";
src = fetchurl {
url = http://archive.apache.org/dist/logging/log4cxx/log4cxx-0.9.7.tar.gz;
sha256 = "1ikyxd8jgf7b2cqjk5lidl7cffs114iiblaczaqbv5bm4vyb4hav";
};
buildInputs = [ autoconf automake libtool libxml2 cppunit boost ];
patchPhase = "sh autogen.sh; sed -e 's/DOMConfigurator::subst/subst/' -i include/log4cxx/xml/domconfigurator.h";
name = "log4cxx-0.10.0";
src = fetchurl {
url = http://apache.mirrors.hoobly.com/logging/log4cxx/0.10.0/apache-log4cxx-0.10.0.tar.gz;
sha256 = "130cjafck1jlqv92mxbn47yhxd2ccwwnprk605c6lmm941i3kq0d";
};
buildInputs = [ autoconf automake libtool libxml2 cppunit boost apr aprutil db45 expat];
}

View file

@ -3484,6 +3484,7 @@ let
log4cxx = import ../development/libraries/log4cxx {
inherit fetchurl stdenv automake autoconf libtool cppunit libxml2 boost;
inherit apr aprutil db45 expat;
};
loudmouth = import ../development/libraries/loudmouth {