log4cplus: added version 1.0.4

svn path=/nixpkgs/trunk/; revision=30777
This commit is contained in:
Peter Simons 2011-12-06 15:05:57 +00:00
parent b1e6ccae4e
commit 06a72fa57c
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, fetchurl }:
let
name = "log4cplus-1.0.4";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "mirror://sourceforge/log4cplus/${name}.tar.bz2";
sha256 = "c2bb01b5f4bff5fa768700e98ead4a79dfd556096c9f3f0401849da7ab80fbef";
};
meta = {
homepage = "http://log4cplus.sourceforge.net/";
description = "a port the log4j library from Java to C++";
license = stdenv.lib.licenses.asl20;
};
}

View File

@ -4197,6 +4197,8 @@ let
log4cxx = callPackage ../development/libraries/log4cxx { };
log4cplus = callPackage ../development/libraries/log4cplus { };
loudmouth = callPackage ../development/libraries/loudmouth { };
lzo = callPackage ../development/libraries/lzo { };