f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
21 lines
466 B
Nix
21 lines
466 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;
|
|
};
|
|
}
|