nixpkgs/pkgs/development/libraries/librime/default.nix

27 lines
727 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, boost, glog, leveldb, marisa, opencc,
2021-06-04 04:54:22 +02:00
libyamlcpp, gtest, capnproto, pkg-config }:
2017-09-12 17:23:09 +02:00
stdenv.mkDerivation rec {
2019-06-07 04:30:03 +02:00
pname = "librime";
2021-06-16 13:51:45 +02:00
version = "1.7.3";
2017-09-12 17:23:09 +02:00
src = fetchFromGitHub {
owner = "rime";
2021-06-04 04:54:22 +02:00
repo = pname;
2019-09-09 01:38:31 +02:00
rev = version;
2021-06-16 13:51:45 +02:00
sha256 = "sha256-GzNMwyJR9PgJN0eGYbnBW6LS3vo4SUVLdyNG9kcEE18=";
2017-09-12 17:23:09 +02:00
};
2021-06-04 04:54:22 +02:00
nativeBuildInputs = [ cmake pkg-config ];
2017-09-12 17:23:09 +02:00
2021-06-04 04:54:22 +02:00
buildInputs = [ boost glog leveldb marisa opencc libyamlcpp gtest capnproto ];
2017-09-12 17:23:09 +02:00
meta = with lib; {
2019-06-16 16:35:40 +02:00
homepage = "https://rime.im/";
2017-09-12 17:23:09 +02:00
description = "Rime Input Method Engine, the core library";
license = licenses.bsd3;
maintainers = with maintainers; [ sifmelcara ];
2018-03-11 15:56:09 +01:00
platforms = platforms.linux;
2017-09-12 17:23:09 +02:00
};
}