mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
Compare commits
3 commits
c830e0ce2a
...
7d9c3e6cb6
Author | SHA1 | Date | |
---|---|---|---|
|
7d9c3e6cb6 | ||
|
d48f52f065 | ||
|
1340eb34a0 |
1 changed files with 27 additions and 25 deletions
|
@ -9,7 +9,7 @@ inputs: {
|
|||
inherit (pkgs) vimPlugins;
|
||||
inherit (lib.strings) isString toString;
|
||||
inherit (lib.lists) filter map concatLists;
|
||||
inherit (lib.attrsets) recursiveUpdate getAttr;
|
||||
inherit (lib.attrsets) recursiveUpdate;
|
||||
inherit (builtins) baseNameOf;
|
||||
|
||||
# import modules.nix with `check`, `pkgs` and `lib` as arguments
|
||||
|
@ -32,14 +32,21 @@ inputs: {
|
|||
# build a vim plugin with the given name and arguments
|
||||
# if the plugin is nvim-treesitter, warn the user to use buildTreesitterPlug
|
||||
# instead
|
||||
buildPlug = {pname, ...} @ attrs: let
|
||||
src = getAttr ("plugin-" + pname) inputs;
|
||||
buildPlug = attrs: let
|
||||
src = inputs."plugin-${attrs.pname}";
|
||||
in
|
||||
pkgs.stdenvNoCC.mkDerivation ({
|
||||
version = src.shortRev or src.shortDirtyRev or "dirty";
|
||||
|
||||
inherit src;
|
||||
|
||||
nativeBuildInputs = with pkgs.vimUtils; [
|
||||
vimCommandCheckHook
|
||||
vimGenDocHook
|
||||
neovimRequireCheckHook
|
||||
];
|
||||
passthru.vimPlugin = true;
|
||||
|
||||
buildPhase = lib.optionalString vimOptions.byteCompileLua ''
|
||||
runHook preBuild
|
||||
find . -type f -name '*.lua' -exec luajit -bd -- {} {} \;
|
||||
|
@ -59,30 +66,25 @@ inputs: {
|
|||
|
||||
buildTreesitterPlug = grammars: vimPlugins.nvim-treesitter.withPlugins (_: grammars);
|
||||
|
||||
pluginBuilders = {
|
||||
nvim-treesitter = buildTreesitterPlug vimOptions.treesitter.grammars;
|
||||
flutter-tools-patched =
|
||||
buildPlug
|
||||
{
|
||||
pname = "flutter-tools";
|
||||
patches = [../patches/flutter-tools.patch];
|
||||
};
|
||||
};
|
||||
|
||||
buildConfigPlugins = plugins:
|
||||
map
|
||||
(plug: (
|
||||
if (isString plug)
|
||||
then
|
||||
(
|
||||
if (plug == "nvim-treesitter")
|
||||
then (buildTreesitterPlug vimOptions.treesitter.grammars)
|
||||
else if (plug == "flutter-tools-patched")
|
||||
then
|
||||
(
|
||||
buildPlug
|
||||
{
|
||||
pname = "flutter-tools";
|
||||
patches = [../patches/flutter-tools.patch];
|
||||
}
|
||||
)
|
||||
else buildPlug {pname = plug;}
|
||||
)
|
||||
else plug
|
||||
))
|
||||
(filter
|
||||
(f: f != null)
|
||||
plugins);
|
||||
(
|
||||
plug:
|
||||
if (isString plug)
|
||||
then pluginBuilders.${plug} or (buildPlug {pname = plug;})
|
||||
else plug
|
||||
)
|
||||
(filter (f: f != null) plugins);
|
||||
|
||||
# built (or "normalized") plugins that are modified
|
||||
builtStartPlugins = buildConfigPlugins vimOptions.startPlugins;
|
||||
|
|
Loading…
Reference in a new issue