ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
21 lines
562 B
Nix
21 lines
562 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "log4cpp";
|
|
version = "1.1.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/log4cpp/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-aWETZZ5CZUBiUnSoslEFLMBDBtjuXEKgx2OfOcqQydY=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://log4cpp.sourceforge.net/";
|
|
description = "A logging framework for C++ patterned after Apache log4j";
|
|
mainProgram = "log4cpp-config";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|