2024-09-10 13:57:50 +02:00
|
|
|
package = "codemp"
|
2024-11-17 15:01:16 +01:00
|
|
|
version = "0.8.4-1"
|
2024-09-10 13:57:50 +02:00
|
|
|
|
|
|
|
source = {
|
2024-09-17 19:33:27 +02:00
|
|
|
url = "git+https://github.com/hexedtech/codemp",
|
2024-11-17 15:01:16 +01:00
|
|
|
tag = "v0.8.4",
|
2024-09-10 13:57:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies = {
|
|
|
|
"Lua >= 5.1",
|
|
|
|
"luarocks-build-rust-mlua",
|
|
|
|
}
|
|
|
|
|
|
|
|
description = {
|
2024-09-17 19:33:27 +02:00
|
|
|
summary = "code multiplexer -- fast, safe, collaborative editor plugin ecosystem",
|
|
|
|
detailed = [[
|
2024-09-10 13:57:50 +02:00
|
|
|
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
|
2024-09-17 19:33:27 +02:00
|
|
|
]],
|
|
|
|
homepage = "https://code.mp",
|
|
|
|
license = "GPL-3.0",
|
2024-09-10 13:57:50 +02:00
|
|
|
-- labels = { "codemp", "cooperative", "ffi", "editor", "rust" },
|
|
|
|
maintainer = "alemi <me@alemi.dev>",
|
|
|
|
}
|
|
|
|
|
|
|
|
build = {
|
|
|
|
type = "rust-mlua",
|
2024-09-17 19:33:27 +02:00
|
|
|
modules = { "codemp" },
|
2024-11-16 16:28:46 +01:00
|
|
|
default_features = false,
|
|
|
|
features = { "lua" },
|
2024-09-10 13:57:50 +02:00
|
|
|
target_path = "../..",
|
|
|
|
include = {
|
2024-09-25 17:22:57 +02:00
|
|
|
["dist/lua/annotations.lua"] = "codemp-annotations.lua",
|
2024-09-10 13:57:50 +02:00
|
|
|
}
|
|
|
|
}
|