Merge pull request #19984 from sternenseemann/license-clash

groovy: no easily conflicting files in top-level (#19872)
This commit is contained in:
Tim Steinbach 2016-11-01 09:09:35 -04:00 committed by GitHub
commit 79424a0c7f

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/;