vim: 7.4.683 -> 7.4.826

Also, since googlecode is shutting down in <1 month move this to the new
github tree. This removes the dependence on mercurial.
This commit is contained in:
William A. Kennington III 2015-08-14 14:06:18 -07:00
parent 435c5d2c42
commit d438d0e98b

View file

@ -1,17 +1,17 @@
{ stdenv, fetchhg, ncurses, gettext, pkgconfig { stdenv, fetchFromGitHub, ncurses, gettext, pkgconfig
# apple frameworks # apple frameworks
, CoreServices, CoreData, Cocoa, Foundation, libobjc }: , CoreServices, CoreData, Cocoa, Foundation, libobjc }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "vim-${version}"; name = "vim-${version}";
version = "7.4.826";
version = "7.4.683"; src = fetchFromGitHub {
owner = "vim";
src = fetchhg { repo = "vim";
url = "https://code.google.com/p/vim/"; rev = "v${stdenv.lib.replaceChars ["."] ["-"] version}";
rev = "v7-4-663"; sha256 = "147lkcjdd0jbc7y2hflfzwnyjhdgi1971pmkizihybxmmj1a4g8y";
sha256 = "1z0qarf6a2smab28g9dnxklhfayn85wx48bnddmyhb9kqzjgqgjc";
}; };
# this makes maintainers very sad # this makes maintainers very sad