summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/fcitx-engines/fcitx-m17n/default.nix
blob: 8b25b2846ff58af00a2cb5f7d08477b85452e073 (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
{ stdenv, fetchurl, cmake, fcitx, gettext, m17n_lib, m17n_db, pkgconfig }:

stdenv.mkDerivation rec {
  pname = "fcitx-m17n";
  version = "0.2.4";

  src = fetchurl {
    url = "http://download.fcitx-im.org/fcitx-m17n/${pname}-${version}.tar.xz";
    sha256 = "15s52h979xz967f8lm0r0qkplig2w3wjck1ymndbg9kvj25ib0ng";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ cmake fcitx gettext m17n_lib m17n_db ];

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

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

}