Merge pull request #326836 from linj-fork/pr/librime-lua

librime-lua: init at 0-unstable-2024-05-19
This commit is contained in:
Lin Jian 2024-07-15 10:58:13 +08:00 committed by GitHub
commit 4530ffc439
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 41 additions and 1 deletions

View File

@ -0,0 +1,40 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
unstableGitUpdater,
lua,
}:
stdenvNoCC.mkDerivation {
pname = "librime-lua";
version = "0-unstable-2024-05-19";
src = fetchFromGitHub {
owner = "hchunhui";
repo = "librime-lua";
rev = "7be6974b6d81c116bba39f6707dc640f6636fa4e";
hash = "sha256-jsrnAFE99d0U0LdddTL7G1p416qJfSNR935TZFH3Swk=";
};
propagatedBuildInputs = [ lua ];
installPhase = ''
runHook preInstall
mkdir $out
cp --archive --verbose src/ $out
install --mode=644 --verbose --target-directory=$out CMakeLists.txt LICENSE README.md
runHook postInstall
'';
passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
meta = {
description = "Extending RIME with Lua scripts";
homepage = "https://github.com/hchunhui/librime-lua";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ linj xddxdd ];
};
}

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, cmake, boost, glog, leveldb, marisa, opencc,
yaml-cpp, gtest, capnproto, pkg-config, plugins ? [ ] }:
yaml-cpp, gtest, capnproto, pkg-config, librime-lua, plugins ? [ librime-lua ] }:
let
copySinglePlugin = plug: "cp -r ${plug} plugins/${plug.name}";