nixpkgs/pkgs/development/libraries/log4cplus/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

21 lines
468 B
Nix

{ stdenv, fetchurl }:
let
name = "log4cplus-1.2.0";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "mirror://sourceforge/log4cplus/${name}.tar.bz2";
sha256 = "1fb3g9l12sps3mv4xjiql2kcvj439mww3skz735y7113cnlcf338";
};
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;
};
}