mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
30 lines
667 B
Nix
30 lines
667 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
# at runtime, need jdk
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "groovy-${version}";
|
|
version = "2.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://dl.bintray.com/groovy/maven/groovy-binary-${version}.zip";
|
|
sha256 = "1qfvw49fbw9svk4gsniw0g0ghal0dqm2hf1i77qmcf80lln1vhdh";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
rm bin/*.bat
|
|
mv * $out
|
|
'';
|
|
|
|
phases = "unpackPhase installPhase";
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An agile dynamic language for the Java Platform";
|
|
homepage = http://groovy-lang.org/;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|