groovy: no easily conflicting files in top-level (#19872)

This commit is contained in:
sternenseemann 2016-10-29 20:19:02 +02:00
parent ac75b9b263
commit ce90d09404
1 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,10 @@ stdenv.mkDerivation rec {
installPhase = '' installPhase = ''
mkdir -p $out mkdir -p $out
mkdir -p $out/share/doc/groovy
rm bin/*.bat rm bin/*.bat
mv * $out mv {bin,conf,embeddable,grooid,indy,lib} $out
mv {licenses,LICENSE,NOTICE} $out/share/doc/groovy
sed -i 's#which#${which}/bin/which#g' $out/bin/startGroovy sed -i 's#which#${which}/bin/which#g' $out/bin/startGroovy
@ -27,8 +29,6 @@ stdenv.mkDerivation rec {
done done
''; '';
phases = "unpackPhase installPhase";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "An agile dynamic language for the Java Platform"; description = "An agile dynamic language for the Java Platform";
homepage = http://groovy-lang.org/; homepage = http://groovy-lang.org/;