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

21 lines
526 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
2021-06-20 14:15:21 +00:00
pname = "log4cpp";
version = "1.1.3";
2017-04-27 18:05:51 +00:00
src = fetchurl {
2021-06-20 14:15:21 +00:00
url = "mirror://sourceforge/log4cpp/${pname}-${version}.tar.gz";
sha256 = "07gmr3jyaf2239n9sp6h7hwdz1pv7b7aka8n06gmr2fnlmaymfrc";
};
2017-04-27 18:05:51 +00:00
enableParallelBuilding = true;
meta = with lib; {
2017-04-27 18:05:51 +00:00
homepage = "http://log4cpp.sourceforge.net/";
description = "A logging framework for C++ patterned after Apache log4j";
2017-04-27 18:05:51 +00:00
license = licenses.lgpl21Plus;
platforms = platforms.unix;
};
}