about summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/anthy
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-06-08 23:41:30 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-06-08 23:41:30 -0500
commit78e126429fe2b667bd496f11ca3d6fc8e8fdeb08 (patch)
tree501b74ab860d7c2902ba50421e0244f4d60abda3 /pkgs/tools/inputmethods/anthy
parentb2e56ccea079345db158f829bc636120405b84f6 (diff)
downloadnixlib-78e126429fe2b667bd496f11ca3d6fc8e8fdeb08.tar
nixlib-78e126429fe2b667bd496f11ca3d6fc8e8fdeb08.tar.gz
nixlib-78e126429fe2b667bd496f11ca3d6fc8e8fdeb08.tar.bz2
nixlib-78e126429fe2b667bd496f11ca3d6fc8e8fdeb08.tar.lz
nixlib-78e126429fe2b667bd496f11ca3d6fc8e8fdeb08.tar.xz
nixlib-78e126429fe2b667bd496f11ca3d6fc8e8fdeb08.tar.zst
nixlib-78e126429fe2b667bd496f11ca3d6fc8e8fdeb08.zip
anthy: use osdn mirror
Diffstat (limited to 'pkgs/tools/inputmethods/anthy')
-rw-r--r--pkgs/tools/inputmethods/anthy/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/inputmethods/anthy/default.nix b/pkgs/tools/inputmethods/anthy/default.nix
index c11fae3888e4..9214edfefb05 100644
--- a/pkgs/tools/inputmethods/anthy/default.nix
+++ b/pkgs/tools/inputmethods/anthy/default.nix
@@ -1,18 +1,18 @@
 { stdenv, fetchurl }:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   name = "anthy-9100h";
 
   meta = with stdenv.lib; {
     description = "Hiragana text to Kana Kanji mixed text Japanese input method";
-    homepage    = http://sourceforge.jp/projects/anthy/;
+    homepage    = "https://anthy.osdn.jp/";
     license     = licenses.gpl2Plus;
     maintainers = with maintainers; [ ericsagnes ];
     platforms   = platforms.linux;
   };
 
   src = fetchurl {
-    url = "http://dl.sourceforge.jp/anthy/37536/anthy-9100h.tar.gz";
+    url = "mirror://osdn/anthy/37536/${name}.tar.gz";
     sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
   };
 }