about summary refs log tree commit diff
path: root/pkgs/development/compilers/gwt/2.4.0.nix
blob: 4705c327b425059d465902a44899586253c91b1d (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
24
{ 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 = "A development toolkit for building and optimizing complex browser-based applications";
    platforms = stdenv.lib.platforms.unix;
  };
}