Adding version
This commit is contained in:
parent
7cbfb2ef79
commit
4b8e0a0cd7
1 changed files with 8 additions and 0 deletions
|
@ -14,6 +14,7 @@ let
|
||||||
plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in {
|
plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in {
|
||||||
"vim-hcl" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
"vim-hcl" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
pname = "vim-hcl";
|
pname = "vim-hcl";
|
||||||
|
version = "git";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "git://github.com/jvirtanen/vim-hcl";
|
url = "git://github.com/jvirtanen/vim-hcl";
|
||||||
rev = "c64a006facad8c3cc0f16ba324e63524932a96e7";
|
rev = "c64a006facad8c3cc0f16ba324e63524932a96e7";
|
||||||
|
@ -23,6 +24,7 @@ let
|
||||||
};
|
};
|
||||||
"systemd-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
"systemd-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
pname = "systemd-syntax";
|
pname = "systemd-syntax";
|
||||||
|
version = "git";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "git://github.com/Matt-Deacalion/vim-systemd-syntax";
|
url = "git://github.com/Matt-Deacalion/vim-systemd-syntax";
|
||||||
rev = "394a516f524e74ac8808ede1496b25d8b9824827";
|
rev = "394a516f524e74ac8808ede1496b25d8b9824827";
|
||||||
|
@ -32,6 +34,7 @@ let
|
||||||
};
|
};
|
||||||
"opencl-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
"opencl-syntax" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
pname = "opencl-syntax";
|
pname = "opencl-syntax";
|
||||||
|
version = "git";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "git://github.com/petRUShka/vim-opencl";
|
url = "git://github.com/petRUShka/vim-opencl";
|
||||||
rev = "7668b018fe9461c6b51e0b736ed84aa84d6bafce";
|
rev = "7668b018fe9461c6b51e0b736ed84aa84d6bafce";
|
||||||
|
@ -41,6 +44,7 @@ let
|
||||||
};
|
};
|
||||||
"vim-gnupg" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
"vim-gnupg" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
pname = "vim-gnupg";
|
pname = "vim-gnupg";
|
||||||
|
version = "git";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jamessan";
|
owner = "jamessan";
|
||||||
repo = "vim-gnupg";
|
repo = "vim-gnupg";
|
||||||
|
@ -51,6 +55,7 @@ let
|
||||||
};
|
};
|
||||||
vim-timedot = buildVimPluginFrom2Nix {
|
vim-timedot = buildVimPluginFrom2Nix {
|
||||||
pname = "vim-timedot";
|
pname = "vim-timedot";
|
||||||
|
version = "git";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jpotier";
|
owner = "jpotier";
|
||||||
repo = "vim-timedot";
|
repo = "vim-timedot";
|
||||||
|
@ -60,6 +65,7 @@ let
|
||||||
};
|
};
|
||||||
vim-selinux = buildVimPluginFrom2Nix {
|
vim-selinux = buildVimPluginFrom2Nix {
|
||||||
pname = "vim-selinux";
|
pname = "vim-selinux";
|
||||||
|
version = "git";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "lzap";
|
owner = "lzap";
|
||||||
repo = "vim-selinux";
|
repo = "vim-selinux";
|
||||||
|
@ -69,11 +75,13 @@ let
|
||||||
};
|
};
|
||||||
vim-lilypond = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
vim-lilypond = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
pname = "vim-lilypond";
|
pname = "vim-lilypond";
|
||||||
|
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 = buildVimPluginFrom2Nix {
|
||||||
pname = "vim-css-color";
|
pname = "vim-css-color";
|
||||||
|
version = "git";
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jpotier";
|
owner = "jpotier";
|
||||||
repo = "vim-css-color";
|
repo = "vim-css-color";
|
||||||
|
|
Loading…
Reference in a new issue