add gwt 2.4.0, patch provided by TermNL
svn path=/nixpkgs/trunk/; revision=31711
This commit is contained in:
parent
08439eb00a
commit
087af1bfe7
21
pkgs/development/compilers/gwt/2.4.0.nix
Normal file
21
pkgs/development/compilers/gwt/2.4.0.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{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.";
|
||||
};
|
||||
}
|
@ -2273,6 +2273,7 @@ let
|
||||
inherit (gtkLibs) glib gtk pango atk;
|
||||
libstdcpp5 = gcc33.gcc;
|
||||
};
|
||||
gwt240 = callPackage ../development/compilers/gwt/2.4.0.nix { };
|
||||
|
||||
ikarus = callPackage ../development/compilers/ikarus { };
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user