anthy: use osdn mirror

This commit is contained in:
Mario Rodas 2019-06-08 23:41:30 -05:00
parent b2e56ccea0
commit 78e126429f
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -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";
};
}