nbos

nbos

https://git.tonybtw.com/nbos.git git://git.tonybtw.com/nbos.git
586 bytes raw
1
#include "neovim.h"
2
#include "../glibc/glibc.h"
3
#include "../lua/lua.h"
4
5
static const pkg *const neovim_deps[] = {
6
    &pkgs_glibc,
7
    &pkgs_lua,
8
};
9
10
const pkg pkgs_neovim = {
11
    .name        = "neovim",
12
    .version     = "0.10.2",
13
    .src         = "https://github.com/neovim/neovim/archive/refs/tags/v0.10.2.tar.gz",
14
    .sha256      = "0000000000000000000000000000000000000000000000000000000000000000",
15
    .deps        = { .data = neovim_deps,
16
                     .len = sizeof(neovim_deps) / sizeof(neovim_deps[0]) },
17
    .build_flags = "",
18
    .build_sys   = BUILD_CMAKE,
19
};