09bb1e1116
svn path=/nixpkgs/trunk/; revision=14039
12 lines
438 B
Nix
12 lines
438 B
Nix
{stdenv, fetchurl, autoconf, automake, libtool, libxml2, cppunit, boost,
|
|
apr, aprutil, db45, expat}:
|
|
|
|
stdenv.mkDerivation {
|
|
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];
|
|
}
|