summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/fcitx/fcitx-anthy.nix
blob: 2099220f2a1f2f146c48cb4cd66dc3f6400f258f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, cmake, fcitx, anthy }:

stdenv.mkDerivation rec {
  name = "fcitx-anthy-0.2.1";

  meta = with stdenv.lib; {
    description = "Fcitx Wrapper for anthy";
    license     = licenses.gpl2Plus;
    platforms   = platforms.linux;
    maintainers = with maintainers; [ iyzsong ];
  };

  src = fetchurl {
    url = "http://download.fcitx-im.org/fcitx-anthy/${name}.tar.xz";
    sha256 = "13fpfhhxkzbq53h10i3hifa37nngm47jq361i70z22bgcrs8887x";
  };

  buildInputs = [ cmake fcitx anthy ];

  preInstall = ''
    substituteInPlace src/cmake_install.cmake \
      --replace ${fcitx} $out
  '';
}