librime: init at 1.2.9
This commit is contained in:
parent
2ab2b885c5
commit
7a23eff831
28
pkgs/development/libraries/librime/default.nix
Normal file
28
pkgs/development/libraries/librime/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, boost, glog, leveldb, marisa, opencc,
|
||||
libyamlcpp, gmock }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "librime-${version}";
|
||||
version = "1.2.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "librime";
|
||||
rev = "rime-${version}";
|
||||
sha256 = "14jgnfm61ynm086x9v7wfmv2p14h0qp8lq4d2jqm21n821jsraj6";
|
||||
};
|
||||
|
||||
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; [ mingchuan ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -9218,6 +9218,8 @@ with pkgs;
|
||||
|
||||
librevisa = callPackage ../development/libraries/librevisa { };
|
||||
|
||||
librime = callPackage ../development/libraries/librime {};
|
||||
|
||||
libsamplerate = callPackage ../development/libraries/libsamplerate {
|
||||
inherit (darwin.apple_sdk.frameworks) ApplicationServices Carbon CoreServices;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user