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

29 lines
736 B
Nix
Raw Normal View History

2017-09-12 15:23:09 +00:00
{ stdenv, fetchFromGitHub, cmake, boost, glog, leveldb, marisa, opencc,
libyamlcpp, gmock }:
stdenv.mkDerivation rec {
name = "librime-${version}";
version = "1.3.1";
2017-09-12 15:23:09 +00:00
src = fetchFromGitHub {
owner = "rime";
repo = "librime";
2018-03-11 14:56:09 +00:00
rev = "${version}";
sha256 = "1y0h3nnz97smx9z8h5fzk4c27mvrwv8kajxffqc43bhyvxvb2jd6";
2017-09-12 15:23:09 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost glog leveldb marisa opencc libyamlcpp gmock ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://rime.im/;
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 15:23:09 +00:00
};
}