2009-04-01 11:47:19 +02:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, libtool, libxml2, cppunit, boost
|
|
|
|
, apr, aprutil, db45, expat
|
|
|
|
}:
|
2007-11-11 17:22:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-02-12 15:52:23 +01:00
|
|
|
name = "log4cxx-0.10.0";
|
2009-04-01 11:47:19 +02:00
|
|
|
|
2009-02-12 15:52:23 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = http://apache.mirrors.hoobly.com/logging/log4cxx/0.10.0/apache-log4cxx-0.10.0.tar.gz;
|
|
|
|
sha256 = "130cjafck1jlqv92mxbn47yhxd2ccwwnprk605c6lmm941i3kq0d";
|
|
|
|
};
|
2009-04-01 11:47:19 +02:00
|
|
|
|
|
|
|
buildInputs = [autoconf automake libtool libxml2 cppunit boost apr aprutil db45 expat];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://logging.apache.org/log4cxx/index.html;
|
|
|
|
description = "A logging framework for C++ patterned after Apache log4j";
|
|
|
|
};
|
2007-11-11 17:22:29 +01:00
|
|
|
}
|