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

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

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

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