mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
19 lines
468 B
Nix
19 lines
468 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "log4cplus";
|
|
version = "2.0.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/log4cplus/log4cplus-${version}.tar.bz2";
|
|
sha256 = "sha256-yjaqNmA20cYfwDZqn/vPMrrVXXSHiyw2qcNNzAC4oMo=";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "http://log4cplus.sourceforge.net/";
|
|
description = "A port the log4j library from Java to C++";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|