summary refs log tree commit diff
path: root/pkgs/development/compilers/gwt/2.4.0.nix
blob: c5c7841d72a013855b0e120a722c1c1a6106bc52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation {
  name = "gwt-java-2.4.0";

  src = fetchurl {
    url=http://google-web-toolkit.googlecode.com/files/gwt-2.4.0.zip;
    sha1 = "a91ac20db0ddd5994ac3cbfb0e8061d5bbf66f88";
  };

  buildInputs = [ unzip ];

  installPhase = ''
    ensureDir $out
    unzip $src
    mv gwt-2.4.0 $out/bin
  '';

  meta = {
    homepage = http://code.google.com/webtoolkit/;
    description = "Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications.";
  };
}