mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-22 23:34:49 +01:00
36 lines
901 B
Lua
36 lines
901 B
Lua
package = "codemp"
|
|
version = "0.8.2-1"
|
|
|
|
source = {
|
|
url = "git+https://github.com/hexedtech/codemp",
|
|
tag = "v0.8.2",
|
|
}
|
|
|
|
dependencies = {
|
|
"Lua >= 5.1",
|
|
"luarocks-build-rust-mlua",
|
|
}
|
|
|
|
description = {
|
|
summary = "code multiplexer -- fast, safe, collaborative editor plugin ecosystem",
|
|
detailed = [[
|
|
codemp is a cooperative live editing framework by hexed.technology
|
|
|
|
it provides a batteries-included CRDT-powered client capable of keeping
|
|
in sync local buffers and sharing cursor event to all workspace members.
|
|
this is a native lua library, completely written in Rust
|
|
]],
|
|
homepage = "https://code.mp",
|
|
license = "GPL-3.0",
|
|
-- labels = { "codemp", "cooperative", "ffi", "editor", "rust" },
|
|
maintainer = "alemi <me@alemi.dev>",
|
|
}
|
|
|
|
build = {
|
|
type = "rust-mlua",
|
|
modules = { "codemp" },
|
|
target_path = "../..",
|
|
include = {
|
|
["dist/lua/annotations.lua"] = "codemp-annotations.lua",
|
|
}
|
|
}
|