3
0
Fork 0
forked from mirrors/nixpkgs

add Groovy 1.7.1

patch provided by Francois Perrad

svn path=/nixpkgs/trunk/; revision=20862
This commit is contained in:
Marc Weber 2010-03-29 23:36:32 +00:00
parent 01b602c7f4
commit 7b5896ca33
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,27 @@
args: with args;
# at runtime, need jdk
stdenv.mkDerivation rec {
name = "groovy-1.7.1";
src = fetchurl {
url = "http://dist.groovy.codehaus.org/distributions/groovy-binary-1.7.1.zip";
sha256 = "0a204f6835f07e6a079bd4761e70cd5e0c31ebc0c9eb293fda11dfb2d8bf137c";
};
installPhase = ''
ensureDir $out
rm bin/*.bat
mv * $out
'';
phases = "unpackPhase installPhase";
buildInputs = [unzip];
meta = {
description = "An agile dynamic language for the Java Platform";
homepage = http://groovy.codehaus.org/;
};
}

View file

@ -2553,6 +2553,10 @@ let
inherit fetchurl stdenv perl gnum4 ncurses openssl;
};
groovy = import ../development/interpreters/groovy {
inherit stdenv fetchurl unzip;
};
guile = import ../development/interpreters/guile {
inherit fetchurl stdenv readline libtool gmp gawk makeWrapper;
};