nixpkgs/pkgs/development/compilers/gwt/default.nix
Sander van der Burg 49124816cc Upgraded GWT to 1.5.3
svn path=/nixpkgs/trunk/; revision=17698
2009-10-07 13:03:38 +00:00

15 lines
428 B
Nix

{stdenv, fetchurl, glib, gtk, pango, atk, libX11, libXt, libstdcpp5}:
stdenv.mkDerivation {
name = "gwt-linux-1.5.3";
builder = ./builder.sh;
src = fetchurl {
url = http://google-web-toolkit.googlecode.com/files/gwt-linux-1.5.3.tar.bz2;
sha1 = "5d7d3295cef4d0eb06a991138e9f538409146027";
};
inherit glib gtk pango atk libX11 libXt libstdcpp5;
buildInputs = [glib gtk pango atk libX11 libXt libstdcpp5];
}