Merge branch 'master' of git.marvid.fr:mpo/overlays-personal
This commit is contained in:
commit
c666795445
1 changed files with 15 additions and 8 deletions
|
@ -13,7 +13,8 @@ with pkgs;
|
|||
let
|
||||
plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in {
|
||||
"vim-hcl" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-hcl";
|
||||
pname = "vim-hcl";
|
||||
version = "git";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/jvirtanen/vim-hcl";
|
||||
rev = "c64a006facad8c3cc0f16ba324e63524932a96e7";
|
||||
|
@ -22,7 +23,8 @@ let
|
|||
dependencies = [];
|
||||
};
|
||||
"systemd-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "systemd-syntax";
|
||||
pname = "systemd-syntax";
|
||||
version = "git";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/Matt-Deacalion/vim-systemd-syntax";
|
||||
rev = "394a516f524e74ac8808ede1496b25d8b9824827";
|
||||
|
@ -31,7 +33,8 @@ let
|
|||
dependencies = [];
|
||||
};
|
||||
"opencl-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "opencl-syntax";
|
||||
pname = "opencl-syntax";
|
||||
version = "git";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/petRUShka/vim-opencl";
|
||||
rev = "7668b018fe9461c6b51e0b736ed84aa84d6bafce";
|
||||
|
@ -40,7 +43,8 @@ let
|
|||
dependencies = [];
|
||||
};
|
||||
"vim-gnupg" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-gnupg";
|
||||
pname = "vim-gnupg";
|
||||
version = "git";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jamessan";
|
||||
repo = "vim-gnupg";
|
||||
|
@ -51,7 +55,7 @@ let
|
|||
};
|
||||
vim-timedot = buildVimPluginFrom2Nix {
|
||||
pname = "vim-timedot";
|
||||
version = "2019-10-08";
|
||||
version = "git";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jpotier";
|
||||
repo = "vim-timedot";
|
||||
|
@ -60,7 +64,8 @@ let
|
|||
};
|
||||
};
|
||||
vim-selinux = buildVimPluginFrom2Nix {
|
||||
name = "vim-selinux";
|
||||
pname = "vim-selinux";
|
||||
version = "git";
|
||||
src = fetchFromGitHub {
|
||||
owner = "lzap";
|
||||
repo = "vim-selinux";
|
||||
|
@ -69,12 +74,14 @@ let
|
|||
};
|
||||
};
|
||||
vim-lilypond = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-lilypond";
|
||||
pname = "vim-lilypond";
|
||||
version = "git";
|
||||
src = "${pkgs.lilypond.outPath}/share/lilypond/${pkgs.lilypond.version}/vim";
|
||||
dependencies = [];
|
||||
};
|
||||
vim-css-color = buildVimPluginFrom2Nix {
|
||||
name = "vim-css-color";
|
||||
pname = "vim-css-color";
|
||||
version = "git";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jpotier";
|
||||
repo = "vim-css-color";
|
||||
|
|
Loading…
Reference in a new issue