mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Merge pull request #19984 from sternenseemann/license-clash
groovy: no easily conflicting files in top-level (#19872)
This commit is contained in:
commit
79424a0c7f
@ -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 New Issue
Block a user