maven: add meta attributes (description, homepage, license)

This commit is contained in:
Bjørn Forsman 2014-06-22 22:11:02 +02:00
parent 24f3fb6788
commit d3ae8086c4

View File

@ -15,4 +15,10 @@ stdenv.mkDerivation {
buildInputs = [ makeWrapper ];
inherit jdk;
meta = with stdenv.lib; {
description = "Build automation tool (used primarily for Java projects)";
homepage = http://maven.apache.org/;
license = licenses.asl20;
};
}