a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, gdk-pixbuf, glib, ibus, libnotify
|
|
, librime, brise }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ibus-rime";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rime";
|
|
repo = "ibus-rime";
|
|
rev = version;
|
|
sha256 = "0zbajz7i18vrqwdyclzywvsjg6qzaih64jhi3pkxp7mbw8jc5vhy";
|
|
};
|
|
|
|
buildInputs = [ gdk-pixbuf glib ibus libnotify librime brise ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
dontUseCmakeConfigure = true;
|
|
|
|
prePatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace 'cmake' 'cmake -DRIME_DATA_DIR=${brise}/share/rime-data'
|
|
|
|
substituteInPlace rime_config.h \
|
|
--replace '/usr' $out
|
|
|
|
substituteInPlace rime_config.h \
|
|
--replace 'IBUS_RIME_SHARED_DATA_DIR IBUS_RIME_INSTALL_PREFIX' \
|
|
'IBUS_RIME_SHARED_DATA_DIR "${brise}"'
|
|
|
|
substituteInPlace rime.xml \
|
|
--replace '/usr' $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
isIbusEngine = true;
|
|
description = "Rime input method engine for IBus";
|
|
homepage = "https://rime.im/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pengmeiyu ];
|
|
};
|
|
}
|