mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
a33df7750e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from log4cplus
21 lines
466 B
Nix
21 lines
466 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
let
|
|
name = "log4cplus-2.0.2";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/log4cplus/${name}.tar.bz2";
|
|
sha256 = "0y9yy32lhgrcss8i2gcc9incdy55rcrr16dx051gkia1vdzfkay4";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://log4cplus.sourceforge.net/;
|
|
description = "A port the log4j library from Java to C++";
|
|
license = stdenv.lib.licenses.asl20;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|