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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
468 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "log4cplus";
version = "2.0.7";
src = fetchurl {
url = "mirror://sourceforge/log4cplus/log4cplus-${version}.tar.bz2";
2021-12-10 04:01:55 +01:00
sha256 = "sha256-j626/uK6TlWKD3iEJhPJ+yOcd12D8jNA0JEITA4bEqs=";
};
meta = {
homepage = "http://log4cplus.sourceforge.net/";
description = "A port the log4j library from Java to C++";
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
};
}