summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2017-10-27 01:44:19 +0200
committerOrivej Desh <orivej@gmx.fr>2017-11-03 18:52:28 +0000
commit525380b472697bd6488200f6757bafe4731ababc (patch)
treed7d95ef3e59346b02cfe173672f71cfaa011dcab /pkgs/development/compilers
parent74260a4922e678348eac91f4aa5767a3f5a039a4 (diff)
downloadnixpkgs-525380b472697bd6488200f6757bafe4731ababc.tar
nixpkgs-525380b472697bd6488200f6757bafe4731ababc.tar.gz
nixpkgs-525380b472697bd6488200f6757bafe4731ababc.tar.bz2
nixpkgs-525380b472697bd6488200f6757bafe4731ababc.tar.lz
nixpkgs-525380b472697bd6488200f6757bafe4731ababc.tar.xz
nixpkgs-525380b472697bd6488200f6757bafe4731ababc.tar.zst
nixpkgs-525380b472697bd6488200f6757bafe4731ababc.zip
treewide: abandon Google Code homepages
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/gwt/2.4.0.nix7
-rw-r--r--pkgs/development/compilers/teyjus/default.nix4
2 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/compilers/gwt/2.4.0.nix b/pkgs/development/compilers/gwt/2.4.0.nix
index 4705c327b42..f15e1060203 100644
--- a/pkgs/development/compilers/gwt/2.4.0.nix
+++ b/pkgs/development/compilers/gwt/2.4.0.nix
@@ -4,8 +4,8 @@ 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";
+    url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/google-web-toolkit/gwt-2.4.0.zip";
+    sha256 = "1gvyg00vx7fdqgfl2w7nhql78clg3abs6fxxy7m03pprdm5qmm17";
   };
 
   buildInputs = [ unzip ];
@@ -17,8 +17,9 @@ stdenv.mkDerivation {
   '';
 
   meta = {
-    homepage = http://code.google.com/webtoolkit/;
+    homepage = http://www.gwtproject.org/;
     description = "A development toolkit for building and optimizing complex browser-based applications";
+    license = stdenv.lib.licenses.asl20;
     platforms = stdenv.lib.platforms.unix;
   };
 }
diff --git a/pkgs/development/compilers/teyjus/default.nix b/pkgs/development/compilers/teyjus/default.nix
index 301915b7a26..222a22bf1cd 100644
--- a/pkgs/development/compilers/teyjus/default.nix
+++ b/pkgs/development/compilers/teyjus/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation {
   name = "teyjus-2.0b2";
 
   src = fetchurl {
-    url = "https://teyjus.googlecode.com/files/teyjus-source-2.0-b2.tar.gz";
+    url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/teyjus/teyjus-source-2.0-b2.tar.gz";
     sha256 = "f589fb460d7095a6e674b7a6413772c41b98654c38602c3e8c477a976da99052";
   };
 
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     description = "An efficient implementation of the Lambda Prolog language";
-    homepage = https://code.google.com/p/teyjus/;
+    homepage = https://github.com/teyjus/teyjus;
     license = stdenv.lib.licenses.gpl3;
     maintainers = [ maintainers.bcdarwin ];
     platforms = platforms.linux;