mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
24 lines
548 B
Nix
24 lines
548 B
Nix
{ 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";
|
|
};
|
|
}
|