mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
log4cpp: minor fixes to meta fields
This commit is contained in:
parent
7301bf8581
commit
14d8ce79ee
1 changed files with 7 additions and 5 deletions
|
@ -2,16 +2,18 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "log4cpp-1.1.1";
|
name = "log4cpp-1.1.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/log4cpp/${name}.tar.gz";
|
url = "mirror://sourceforge/log4cpp/${name}.tar.gz";
|
||||||
sha256 = "1l5yz5rfzzv6g3ynrj14mxfsk08cp5h1ssr7d74hjs0accrg7arm";
|
sha256 = "1l5yz5rfzzv6g3ynrj14mxfsk08cp5h1ssr7d74hjs0accrg7arm";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
enableParallelBuilding = true;
|
||||||
homepage = http://log4cpp.sourceforge.net/;
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://log4cpp.sourceforge.net/";
|
||||||
description = "A logging framework for C++ patterned after Apache log4j";
|
description = "A logging framework for C++ patterned after Apache log4j";
|
||||||
license = stdenv.lib.licenses.lgpl21Plus;
|
license = licenses.lgpl21Plus;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue