nixpkgs/pkgs/tools/inputmethods/fcitx-engines/fcitx-rime/default.nix

36 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig, fcitx, librime, brise, hicolor-icon-theme }:
2017-09-16 05:02:10 +00:00
stdenv.mkDerivation rec {
pname = "fcitx-rime";
2017-09-16 05:02:10 +00:00
version = "0.3.2";
src = fetchurl {
url = "https://download.fcitx-im.org/fcitx-rime/${pname}-${version}.tar.xz";
2017-09-16 05:02:10 +00:00
sha256 = "0bd8snfa6jr8dhnm0s0z021iryh5pbaf7p15rhkgbigw2pssczpr";
};
buildInputs = [ cmake pkgconfig fcitx librime brise hicolor-icon-theme ];
2017-09-16 05:02:10 +00:00
# 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 ];
2017-09-16 05:02:10 +00:00
};
}