vim-plugins: update source hash for command-t
And use fetchzip instead of fetchurl towards github.com to not let this happen again. (fetchzip checks the hash on the *extracted* archive, so changes in compression algo etc. doesn't change the hash.)
This commit is contained in:
parent
5165ee6ff3
commit
e6c1973971
@ -1,4 +1,4 @@
|
||||
{ fetchurl, bash, stdenv, python, cmake, vim, perl, ruby, unzip, which, fetchgit, clang }:
|
||||
{ fetchurl, bash, stdenv, python, cmake, vim, perl, ruby, unzip, which, fetchgit, fetchzip, clang }:
|
||||
|
||||
/*
|
||||
About Vim and plugins
|
||||
@ -172,9 +172,10 @@ in rec
|
||||
command_T = buildVimPlugin rec {
|
||||
version = "1.8";
|
||||
name = "command-t-${version}";
|
||||
src = fetchurl {
|
||||
src = fetchzip {
|
||||
inherit name;
|
||||
url = "https://github.com/wincent/Command-T/archive/${version}.tar.gz";
|
||||
sha256 = "ad8664292e6eee40fbe195d856d20d93a8630e8c0149317ad72cc39423630800";
|
||||
sha256 = "186qz1smf7w91r68p724whg6d821f7ph6ks63l2vkhff8f9qqhrc";
|
||||
};
|
||||
buildInputs = [ perl ruby ];
|
||||
buildPhase = ''
|
||||
|
Loading…
Reference in New Issue
Block a user