summary refs log tree commit diff
path: root/pkgs/development/libraries/log4cxx/default.nix
blob: 49544796612fe19d424017aa7ee92dfe437c81ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
args: with args;

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 ];
	patchPhase = "sh autogen.sh; sed -e 's/DOMConfigurator::subst/subst/' -i include/log4cxx/xml/domconfigurator.h";
}