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
, CoreServices, CoreData, Cocoa, Foundation, libobjc }:
stdenv.mkDerivation rec {
name = "vim-${version}";
version = "7.4.826";
version = "7.4.683";
src = fetchhg {
url = "https://code.google.com/p/vim/";
rev = "v7-4-663";
sha256 = "1z0qarf6a2smab28g9dnxklhfayn85wx48bnddmyhb9kqzjgqgjc";
src = fetchFromGitHub {
owner = "vim";
repo = "vim";
rev = "v${stdenv.lib.replaceChars ["."] ["-"] version}";
sha256 = "147lkcjdd0jbc7y2hflfzwnyjhdgi1971pmkizihybxmmj1a4g8y";
};
# this makes maintainers very sad