depot/third_party/nixpkgs/pkgs/by-name/li/librime/package.nix

67 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
boost,
glog,
leveldb,
marisa,
opencc,
yaml-cpp,
gtest,
capnproto,
pkg-config,
librime-lua,
librime-octagram,
plugins ? [
librime-lua
librime-octagram
],
}:
let
copySinglePlugin = plug: "cp -r ${plug} plugins/${plug.name}";
copyPlugins = ''
mkdir -p plugins
${lib.concatMapStringsSep "\n" copySinglePlugin plugins}
chmod +w -R plugins/*
'';
in
stdenv.mkDerivation rec {
pname = "librime";
version = "1.12.0";
src = fetchFromGitHub {
owner = "rime";
repo = pname;
rev = version;
sha256 = "sha256-NwtWpH1FxIZP/+oOJbsaEmySLxXlxkCCIG+SEGo242Q=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
boost
glog
leveldb
marisa
opencc
yaml-cpp
gtest
capnproto
] ++ plugins; # for propagated build inputs
preConfigure = copyPlugins;
meta = with lib; {
homepage = "https://rime.im/";
description = "Rime Input Method Engine, the core library";
license = licenses.bsd3;
maintainers = with maintainers; [ vonfry ];
platforms = platforms.linux ++ platforms.darwin;
};
}