c556a6ea46
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
28 lines
570 B
Nix
28 lines
570 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
# 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 = ''
|
|
mkdir -p $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/;
|
|
};
|
|
}
|