mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
21 lines
526 B
Nix
21 lines
526 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "log4cpp";
|
|
version = "1.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/log4cpp/${pname}-${version}.tar.gz";
|
|
sha256 = "07gmr3jyaf2239n9sp6h7hwdz1pv7b7aka8n06gmr2fnlmaymfrc";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://log4cpp.sourceforge.net/";
|
|
description = "A logging framework for C++ patterned after Apache log4j";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|