about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix
blob: d1e7f85f75f3a2d938694d7b3afb159b0c0fb7c8 (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
25
26
27
28
{ stdenv, fetchurl, cmake, fcitx, anthy, gettext, pkgconfig }:

stdenv.mkDerivation rec {
  pname = "fcitx-anthy";
  version = "0.2.3";

  src = fetchurl {
    url = "http://download.fcitx-im.org/fcitx-anthy/${pname}-${version}.tar.xz";
    sha256 = "01jx7wwq0mifqrzkswfglqhwkszbfcl4jinxgdgqx9kc6mb4k6zd";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ cmake fcitx anthy gettext ];

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

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

}