Update to vimPlugins

This commit is contained in:
Samae 2023-10-15 23:18:45 +03:00
parent c49770e43e
commit 19bd12aaf8
2 changed files with 11 additions and 11 deletions

View File

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1685655444, "lastModified": 1697059129,
"narHash": "sha256-6EujQNAeaUkWvpEZZcVF8qSfQrNVWFNNGbUJxv/A5a8=", "narHash": "sha256-9NJcFF9CEYPvHJ5ckE8kvINvI84SZZ87PvqMbH6pro0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e635192892f5abbc2289eaac3a73cdb249abaefd", "rev": "5e4c2ada4fcd54b99d56d7bd62f384511a7e2593",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -11,8 +11,8 @@
with pkgs; with pkgs;
let let
plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in { plugins = let inherit (vimUtils) buildVimPlugin; in {
"systemd-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation "systemd-syntax" = buildVimPlugin { # created by nix#NixDerivation
pname = "systemd-syntax"; pname = "systemd-syntax";
version = "git"; version = "git";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -23,7 +23,7 @@ let
}; };
dependencies = []; dependencies = [];
}; };
"opencl-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation "opencl-syntax" = buildVimPlugin { # created by nix#NixDerivation
pname = "opencl-syntax"; pname = "opencl-syntax";
version = "git"; version = "git";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -34,7 +34,7 @@ let
}; };
dependencies = []; dependencies = [];
}; };
vim-timedot = buildVimPluginFrom2Nix { vim-timedot = buildVimPlugin {
pname = "vim-timedot"; pname = "vim-timedot";
version = "git"; version = "git";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -44,7 +44,7 @@ let
sha256 = "0vgga3fmppb71apd31bwji98d62vs1p77c1hssshmh2fc7yck6s8"; sha256 = "0vgga3fmppb71apd31bwji98d62vs1p77c1hssshmh2fc7yck6s8";
}; };
}; };
vim-selinux = buildVimPluginFrom2Nix { vim-selinux = buildVimPlugin {
pname = "vim-selinux"; pname = "vim-selinux";
version = "git"; version = "git";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -54,13 +54,13 @@ let
sha256 = "kOKOpxLSMCEQ1mmoJrL72/1fAH9xPV21rReAXrr5f5g="; sha256 = "kOKOpxLSMCEQ1mmoJrL72/1fAH9xPV21rReAXrr5f5g=";
}; };
}; };
vim-lilypond = buildVimPluginFrom2Nix { # created by nix#NixDerivation vim-lilypond = buildVimPlugin { # created by nix#NixDerivation
pname = "vim-lilypond"; pname = "vim-lilypond";
version = "git"; version = "git";
src = "${pkgs.lilypond.outPath}/share/lilypond/${pkgs.lilypond.version}/vim"; src = "${pkgs.lilypond.outPath}/share/lilypond/${pkgs.lilypond.version}/vim";
dependencies = []; dependencies = [];
}; };
vim-css-color = buildVimPluginFrom2Nix { vim-css-color = buildVimPlugin {
pname = "vim-css-color"; pname = "vim-css-color";
version = "git"; version = "git";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -70,7 +70,7 @@ let
sha256 = "08k1jh9n0kz9xwmy0ig03w9lx0r2m2rhmfwb0idy81madllcidjc"; sha256 = "08k1jh9n0kz9xwmy0ig03w9lx0r2m2rhmfwb0idy81madllcidjc";
}; };
}; };
vim-lsp-mats = buildVimPluginFrom2Nix { vim-lsp-mats = buildVimPlugin {
pname = "vim-lsp"; pname = "vim-lsp";
version = "git"; version = "git";
src = fetchFromGitHub { src = fetchFromGitHub {