nixpkgs/pkgs/development/libraries/log4cplus/default.nix

21 lines
468 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
let
2020-01-06 21:49:16 +00:00
name = "log4cplus-2.0.5";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "mirror://sourceforge/log4cplus/${name}.tar.bz2";
2020-01-06 21:49:16 +00:00
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;
};
}