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

27 lines
688 B
Nix
Raw Normal View History

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