summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/fcitx-engines/fcitx-chewing/default.nix
blob: 361355d1d688746024b5b54345c88a5cfe938188 (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
29
30
31
32
{ stdenv, fetchurl, cmake, fcitx, gettext, libchewing, pkgconfig }:

stdenv.mkDerivation rec {
  name = "fcitx-chewing-${version}";
  version = "0.2.2";

  src = fetchurl {
    url = "http://download.fcitx-im.org/fcitx-chewing/${name}.tar.xz";
    sha256 = "0l548xdx2fvjya1ixp37pn382yak0m4kwfh9lgh7l3y2sblqw9zs";
  };

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

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

  meta = with stdenv.lib; {
    isFcitxEngine = true;
    homepage      = "https://github.com/fcitx/fcitx-chewing";
    downloadPage  = "http://download.fcitx-im.org/fcitx-chewing/";
    description   = "Fcitx engine for chewing";
    license       = licenses.gpl2;
    platforms     = platforms.linux;
    maintainers   = with maintainers; [ ericsagnes ];
  };

}