summary refs log tree commit diff
path: root/pkgs/development/libraries/log4cxx/default.nix
blob: 0e6c24bf61e1da4b0d19ff34d45d220f1aad5e39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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];

  meta = {
    homepage = http://logging.apache.org/log4cxx/index.html;
    description = "A logging framework for C++ patterned after Apache log4j";
  };
}