2011-12-06 15:05:57 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
let
|
2018-09-11 07:56:15 +01:00
|
|
|
name = "log4cplus-2.0.2";
|
2011-12-06 15:05:57 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/log4cplus/${name}.tar.bz2";
|
2018-09-11 07:56:15 +01:00
|
|
|
sha256 = "0y9yy32lhgrcss8i2gcc9incdy55rcrr16dx051gkia1vdzfkay4";
|
2011-12-06 15:05:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://log4cplus.sourceforge.net/;
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "A port the log4j library from Java to C++";
|
2011-12-06 15:05:57 +00:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-12-06 15:05:57 +00:00
|
|
|
};
|
|
|
|
}
|