log4cxx: Clean up package expression.

Add meta.license and use a version attribute instead of hardcoding
everything.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-11-22 16:26:26 +01:00
parent c853841c8c
commit 440af2e5e5
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -2,11 +2,12 @@
, apr, aprutil, db45, expat
}:
stdenv.mkDerivation {
name = "log4cxx-0.10.0";
stdenv.mkDerivation rec {
name = "log4cxx-${version}";
version = "0.10.0";
src = fetchurl {
url = http://apache.mirrors.hoobly.com/logging/log4cxx/0.10.0/apache-log4cxx-0.10.0.tar.gz;
url = "http://apache.mirrors.hoobly.com/logging/log4cxx/${version}/apache-${name}.tar.gz";
sha256 = "130cjafck1jlqv92mxbn47yhxd2ccwwnprk605c6lmm941i3kq0d";
};
@ -26,5 +27,6 @@ stdenv.mkDerivation {
meta = {
homepage = http://logging.apache.org/log4cxx/index.html;
description = "A logging framework for C++ patterned after Apache log4j";
license = stdenv.lib.licenses.asl20;
};
}