pkgs: vimPlugins.none-ls-shellcheck-nvim: init at 2024-03-19

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2024-04-21 02:31:44 +02:00
parent 15c9581536
commit e4e479e91a
Signed by: c8h4
GPG key ID: 73D5E7FDEE3DE49A
3 changed files with 24 additions and 1 deletions

View file

@ -98,7 +98,8 @@
checks = {
formatting = treefmt.config.build.check self;
} // (import ./pkgs { } pkgs);
} // (import ./pkgs { } pkgs)
// (import ./pkgs/vim-plugins.nix { } pkgs);
formatter = treefmt.config.build.wrapper;

18
pkgs/vim-plugins.nix Normal file
View file

@ -0,0 +1,18 @@
_: super:
{
none-ls-shellcheck-nvim = super.callPackage ({ vimUtils, fetchFromGitHub }:
vimUtils.buildVimPlugin {
pname = "none-ls-shellcheck.nvim";
version = "2024-03-19";
src = fetchFromGitHub {
owner = "gbprod";
repo = "none-ls-shellcheck.nvim";
rev = "0f84461241e76e376a95fb7391deac82dc3efdbf";
sha256 = "sha256-t06Nu7wVEGoJtaaZh/psvuC9kdYhwh6JeOd0cg3WVHY=";
};
meta.homepage = "https://github.com/gbprod/none-ls-shellcheck.nvim";
}) { };
}

View file

@ -24,6 +24,10 @@ in {
overlays = [
(import ./pkgs)
(self: super: {
vimPlugins = super.vimPlugins
// (import ./pkgs/vim-plugins.nix self super);
})
(_: _: { inherit (import sourcehutPkgs { }) sourcehut; })
];
}