mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
28263b02a9
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/log4cplus/versions
21 lines
466 B
Nix
21 lines
466 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
let
|
|
name = "log4cplus-2.0.3";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/log4cplus/${name}.tar.bz2";
|
|
sha256 = "0rwzwskvv94cqg2nn7jsvzlak7y01k37v345fcm040klrjvkbc3w";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|