nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.05 18 lines 504 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "anthy-9100h"; 5 6 meta = with lib; { 7 description = "Hiragana text to Kana Kanji mixed text Japanese input method"; 8 homepage = "https://anthy.osdn.jp/"; 9 license = licenses.gpl2Plus; 10 maintainers = with maintainers; [ ericsagnes ]; 11 platforms = platforms.unix; 12 }; 13 14 src = fetchurl { 15 url = "mirror://osdn/anthy/37536/${name}.tar.gz"; 16 sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj"; 17 }; 18}