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

View file

@ -15,8 +15,10 @@ stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out
mkdir -p $out/share/doc/groovy
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
@ -27,8 +29,6 @@ stdenv.mkDerivation rec {
done
'';
phases = "unpackPhase installPhase";
meta = with stdenv.lib; {
description = "An agile dynamic language for the Java Platform";
homepage = http://groovy-lang.org/;