summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorCillian de Róiste <cillian.deroiste@gmail.com>2017-08-03 21:27:28 +0200
committerCillian de Róiste <cillian.deroiste@gmail.com>2017-08-03 23:03:03 +0200
commit7c17925aaea7821f7cac182fee85bf6b4b52429c (patch)
treeeecc91f3da35aac00d69459c5b72d1a967fe92ea /pkgs
parent4b960e2ce26621983f909db6636bc310fb810f72 (diff)
downloadnixlib-7c17925aaea7821f7cac182fee85bf6b4b52429c.tar
nixlib-7c17925aaea7821f7cac182fee85bf6b4b52429c.tar.gz
nixlib-7c17925aaea7821f7cac182fee85bf6b4b52429c.tar.bz2
nixlib-7c17925aaea7821f7cac182fee85bf6b4b52429c.tar.lz
nixlib-7c17925aaea7821f7cac182fee85bf6b4b52429c.tar.xz
nixlib-7c17925aaea7821f7cac182fee85bf6b4b52429c.tar.zst
nixlib-7c17925aaea7821f7cac182fee85bf6b4b52429c.zip
key-mon: fix download and homepage URLs
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/video/key-mon/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/key-mon/default.nix b/pkgs/applications/video/key-mon/default.nix
index b36b539176ee..bc6cd015b865 100644
--- a/pkgs/applications/video/key-mon/default.nix
+++ b/pkgs/applications/video/key-mon/default.nix
@@ -6,7 +6,7 @@ pythonPackages.buildPythonApplication rec {
   namePrefix = "";
 
   src = fetchurl {
-    url = "http://key-mon.googlecode.com/files/${name}.tar.gz";
+    url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/key-mon/${name}.tar.gz";
     sha256 = "1liz0dxcqmchbnl1xhlxkqm3gh76wz9jxdxn9pa7dy77fnrjkl5q";
   };
 
@@ -20,7 +20,7 @@ pythonPackages.buildPythonApplication rec {
   '';
 
   meta = with stdenv.lib; {
-    homepage = http://code.google.com/p/key-mon;
+    homepage = https://code.google.com/archive/p/key-mon;
     description = "Utility to show live keyboard and mouse status for teaching and screencasts";
     license = licenses.asl20;
     maintainers = [ maintainers.goibhniu ];