vimPlugins.syntastic: update to 3.1.0

This commit is contained in:
Jason "Don" O'Conal 2013-09-08 11:11:32 +10:00 committed by Bjørn Forsman
parent f5768c5da1
commit 499109b7dd

View file

@ -145,12 +145,15 @@ in
};
};
syntastic = simpleDerivation {
name = "vim-syntastic-3.0.0";
syntastic = simpleDerivation rec {
version = "3.1.0";
name = "vim-syntastic-${version}";
src = fetchurl {
url = "https://github.com/scrooloose/syntastic/archive/3.0.0.tar.gz";
sha256 = "0nf69wpa8qa7xcfvywy2khmazs4dn1i2nal9qwjh2bzrbwbbkdyl";
url = "https://github.com/scrooloose/syntastic/archive/${version}.tar.gz";
sha256 = "155zfb5z0gmd1xrpna4varqf502lq0cr41gmxq5v71r6kmb7ql82";
};
path = "syntastic";
};