From d438d0e98b92e7ee3ae32df65bc690be572bcd04 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Fri, 14 Aug 2015 14:06:18 -0700 Subject: [PATCH] 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. --- pkgs/applications/editors/vim/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix index e1e920e2c49..54b3127898e 100644 --- a/pkgs/applications/editors/vim/default.nix +++ b/pkgs/applications/editors/vim/default.nix @@ -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