Adding version

This commit is contained in:
Martin Potier 2021-09-14 17:22:10 +03:00
parent 7cbfb2ef79
commit 4b8e0a0cd7
No known key found for this signature in database
GPG Key ID: D4DD957DBA4AD89E
1 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,7 @@ let
plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in {
"vim-hcl" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
pname = "vim-hcl";
version = "git";
src = fetchgit {
url = "git://github.com/jvirtanen/vim-hcl";
rev = "c64a006facad8c3cc0f16ba324e63524932a96e7";
@ -23,6 +24,7 @@ let
};
"systemd-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
pname = "systemd-syntax";
version = "git";
src = fetchgit {
url = "git://github.com/Matt-Deacalion/vim-systemd-syntax";
rev = "394a516f524e74ac8808ede1496b25d8b9824827";
@ -32,6 +34,7 @@ let
};
"opencl-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
pname = "opencl-syntax";
version = "git";
src = fetchgit {
url = "git://github.com/petRUShka/vim-opencl";
rev = "7668b018fe9461c6b51e0b736ed84aa84d6bafce";
@ -41,6 +44,7 @@ let
};
"vim-gnupg" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
pname = "vim-gnupg";
version = "git";
src = fetchFromGitHub {
owner = "jamessan";
repo = "vim-gnupg";
@ -51,6 +55,7 @@ let
};
vim-timedot = buildVimPluginFrom2Nix {
pname = "vim-timedot";
version = "git";
src = fetchFromGitHub {
owner = "jpotier";
repo = "vim-timedot";
@ -60,6 +65,7 @@ let
};
vim-selinux = buildVimPluginFrom2Nix {
pname = "vim-selinux";
version = "git";
src = fetchFromGitHub {
owner = "lzap";
repo = "vim-selinux";
@ -69,11 +75,13 @@ let
};
vim-lilypond = buildVimPluginFrom2Nix { # created by nix#NixDerivation
pname = "vim-lilypond";
version = "git";
src = "${pkgs.lilypond.outPath}/share/lilypond/${pkgs.lilypond.version}/vim";
dependencies = [];
};
vim-css-color = buildVimPluginFrom2Nix {
pname = "vim-css-color";
version = "git";
src = fetchFromGitHub {
owner = "jpotier";
repo = "vim-css-color";