l vim: fetchgit -> fetchFromGitHub

we need this to clone git repos when our key is not authenticated
to github.com
This commit is contained in:
lassulus 2017-09-18 15:04:25 +02:00
parent c40c6ead1e
commit 7e30bd3d1c

View file

@ -106,9 +106,10 @@ let
pkgs.vimPlugins.undotree
(pkgs.vimUtils.buildVimPlugin {
name = "file-line-1.0";
src = pkgs.fetchgit {
url = git://github.com/bogado/file-line;
rev = "refs/tags/1.0";
src = pkgs.fetchFromGitHub {
owner = "bogado";
repo = "file-line";
rev = "1.0";
sha256 = "0z47zq9rqh06ny0q8lpcdsraf3lyzn9xvb59nywnarf3nxrk6hx0";
};
})