summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/fcitx-engines/fcitx-rime/default.nix
blob: 095be7469cd803fdfb9c4c6db8b7802b0edf7960 (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
33
34
35
{ stdenv, fetchurl, cmake, pkgconfig, fcitx, librime, brise, hicolor-icon-theme }:

stdenv.mkDerivation rec {
  pname = "fcitx-rime";
  version = "0.3.2";

  src = fetchurl {
    url = "https://download.fcitx-im.org/fcitx-rime/${pname}-${version}.tar.xz";
    sha256 = "0bd8snfa6jr8dhnm0s0z021iryh5pbaf7p15rhkgbigw2pssczpr";
  };

  buildInputs = [ cmake pkgconfig fcitx librime brise hicolor-icon-theme ];

  # cmake cannont automatically find our nonstandard brise install location
  cmakeFlags = [ "-DRIME_DATA_DIR=${brise}/share/rime-data" ];

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

  enableParallelBuilding = true;

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