Merge pull request #326836 from linj-fork/pr/librime-lua
librime-lua: init at 0-unstable-2024-05-19
This commit is contained in:
commit
4530ffc439
40
pkgs/by-name/li/librime-lua/package.nix
Normal file
40
pkgs/by-name/li/librime-lua/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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}";
|
||||
|
Loading…
Reference in New Issue
Block a user