about summary refs log tree commit diff
path: root/pkgs/development/compilers/gwt/2.4.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/gwt/2.4.0.nix')
-rw-r--r--pkgs/development/compilers/gwt/2.4.0.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/development/compilers/gwt/2.4.0.nix b/pkgs/development/compilers/gwt/2.4.0.nix
deleted file mode 100644
index b769eb30463a..000000000000
--- a/pkgs/development/compilers/gwt/2.4.0.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib, stdenv, fetchurl, unzip }:
-
-stdenv.mkDerivation rec {
-  pname = "gwt-java";
-  version = "2.4.0";
-
-  src = fetchurl {
-    url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/google-web-toolkit/gwt-${version}.zip";
-    sha256 = "1gvyg00vx7fdqgfl2w7nhql78clg3abs6fxxy7m03pprdm5qmm17";
-  };
-
-  nativeBuildInputs = [ unzip ];
-
-  installPhase = ''
-    mkdir -p $out
-    unzip $src
-    mv gwt-2.4.0 $out/bin
-  '';
-
-  meta = {
-    homepage = "https://www.gwtproject.org/";
-    description = "Development toolkit for building and optimizing complex browser-based applications";
-    license = lib.licenses.asl20;
-    platforms = lib.platforms.unix;
-  };
-}