openjdk: Add meta attributes

svn path=/nixpkgs/trunk/; revision=28099
This commit is contained in:
Shea Levy 2011-08-01 01:17:42 +00:00
parent 31b09ab695
commit 84529a1370

View file

@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
libXrender
libXtst
libXi
];
;
postUnpack = ''
sed -i -e "s@/usr/bin/test@${coreutils}/bin/test@" \
@ -84,5 +84,15 @@ stdenv.mkDerivation rec {
cp -av build/*/j2sdk-image/* $out
rm $out/src.zip
'';
meta = {
homepage = http://openjdk.java.net/;
license = "GPLv2";
description = "The open-source Java Development Kit";
maintainers = [ stdenv.lib.maintainers.shlevy ];
};
}