summary refs log tree commit diff
path: root/pkgs/development/compilers/gwt/2.4.0.nix
blob: f0dc9378c4f0c033b974494c08afe2c2baf06bb7 (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 = ''
    mkdir -p $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";
  };
}