mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-09 08:44:32 +02:00
16 lines
400 B
Nix
16 lines
400 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "sqlite-lua";
|
|
packPathName = "sqlite.lua";
|
|
moduleName = "sqlite.lua";
|
|
package = "sqlite-lua";
|
|
description = "SQLite/LuaJIT binding and a highly opinionated wrapper for storing, retrieving, caching, and persisting SQLite databases.";
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
callSetup = false;
|
|
hasSettings = false;
|
|
}
|