diff options
author | lassulus <lassulus@lassul.us> | 2017-09-18 15:04:25 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-09-18 15:04:25 +0200 |
commit | 7e30bd3d1c9ebd7aefde3b00f086806b7a2b287e (patch) | |
tree | e6ea7097162b835414fe778bc3c40f0cf1b39eca /lass/2configs/vim.nix | |
parent | c40c6ead1ec8f632ea85c788a4009d6aad646dbf (diff) |
l vim: fetchgit -> fetchFromGitHub
we need this to clone git repos when our key is not authenticated
to github.com
Diffstat (limited to 'lass/2configs/vim.nix')
-rw-r--r-- | lass/2configs/vim.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lass/2configs/vim.nix b/lass/2configs/vim.nix index 29800dbeb..7f36fcd90 100644 --- a/lass/2configs/vim.nix +++ b/lass/2configs/vim.nix @@ -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"; }; }) |