diff --git a/pkgs/vim/default.nix b/pkgs/vim/default.nix index 33e8950..152493f 100755 --- a/pkgs/vim/default.nix +++ b/pkgs/vim/default.nix @@ -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";