mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
5688263fdb
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/kqm64gvnza0w5q5si6swlsdfzrymrdfj-log4cpp-1.1.3/bin/log4cpp-config --help` got 0 exit code - ran `/nix/store/kqm64gvnza0w5q5si6swlsdfzrymrdfj-log4cpp-1.1.3/bin/log4cpp-config --help` and found version 1.1.3 - found 1.1.3 with grep in /nix/store/kqm64gvnza0w5q5si6swlsdfzrymrdfj-log4cpp-1.1.3 - found 1.1.3 in filename of file in /nix/store/kqm64gvnza0w5q5si6swlsdfzrymrdfj-log4cpp-1.1.3
20 lines
500 B
Nix
20 lines
500 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "log4cpp-1.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/log4cpp/${name}.tar.gz";
|
|
sha256 = "07gmr3jyaf2239n9sp6h7hwdz1pv7b7aka8n06gmr2fnlmaymfrc";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://log4cpp.sourceforge.net/";
|
|
description = "A logging framework for C++ patterned after Apache log4j";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|