summary refs log tree commit diff
path: root/pkgs/development/libraries/log4cplus/default.nix
blob: 3a4b182dd94b86b552517a85aa8c19e3fbe577b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl }:

let
  name = "log4cplus-2.0.5";
in
stdenv.mkDerivation {
  inherit name;

  src = fetchurl {
    url = "mirror://sourceforge/log4cplus/${name}.tar.bz2";
    sha256 = "05gb0crf440da3vcaxavglzvsldw8hsvxq3xvvj73mzniv3bz3dk";
  };

  meta = {
    homepage = http://log4cplus.sourceforge.net/;
    description = "A port the log4j library from Java to C++";
    license = stdenv.lib.licenses.asl20;
    platforms = stdenv.lib.platforms.unix;
  };
}