groovy: no easily conflicting files in top-level (#19872)
This commit is contained in:
parent
ac75b9b263
commit
ce90d09404
1 changed files with 3 additions and 3 deletions
|
@ -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/;
|
||||
|
|
Loading…
Reference in a new issue