21 lines
458 B
Nix
21 lines
458 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
let
|
|
name = "log4cplus-2.0.6";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/log4cplus/${name}.tar.bz2";
|
|
sha256 = "sha256-GpY6/Q+IPWLelGsYkn0jgFH9R5NuQV6r7/4rE5fxbso=";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "http://log4cplus.sourceforge.net/";
|
|
description = "A port the log4j library from Java to C++";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|