openjdk: Install build results to $out

svn path=/nixpkgs/trunk/; revision=28098
This commit is contained in:
Shea Levy 2011-08-01 01:17:33 +00:00
parent 572edb6f68
commit 31b09ab695

View file

@ -78,5 +78,11 @@ stdenv.mkDerivation rec {
configurePhase = ''
make $makeFlags sanity
'';
installPhase = ''
ensureDir $out
cp -av build/*/j2sdk-image/* $out
rm $out/src.zip
'';
}