log4cplus: 2.1.1 -> 2.1.2 (#352543)

This commit is contained in:
Peder Bergebakken Sundt 2024-11-14 02:40:13 +01:00 committed by GitHub
commit a966d664ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,14 +1,20 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchurl, pkg-config }:
stdenv.mkDerivation rec {
pname = "log4cplus";
version = "2.1.1";
version = "2.1.2";
src = fetchurl {
url = "mirror://sourceforge/log4cplus/log4cplus-${version}.tar.bz2";
sha256 = "sha256-ZZfeeCd15OD7qP3K2TjDcJ/YOagITEtu3648xQRuJog=";
hash = "sha256-JFDfu0qzXdLJ5k2MdQxRS/cpO4HY8yr3qxJEF/cK360=";
};
nativeBuildInputs = [ pkg-config ];
enableParallelBuilding = true;
strictDeps = true;
meta = {
homepage = "http://log4cplus.sourceforge.net/";
description = "Port the log4j library from Java to C++";