summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAristid Breitkreuz <aristidb@gmail.com>2016-06-18 17:01:18 +0200
committerGitHub <noreply@github.com>2016-06-18 17:01:18 +0200
commit9ea88aa7be83b91c1c7a748c230e4f72f771855c (patch)
tree0afda9aaee2944d19915d3fc68db965866802172 /pkgs/applications
parentc7879cbc91f7a719f594448ee511b161fd8d21d6 (diff)
parent8cbbc73dceddfc4ef7081aac91302aa7a424d29f (diff)
downloadnixpkgs-9ea88aa7be83b91c1c7a748c230e4f72f771855c.tar
nixpkgs-9ea88aa7be83b91c1c7a748c230e4f72f771855c.tar.gz
nixpkgs-9ea88aa7be83b91c1c7a748c230e4f72f771855c.tar.bz2
nixpkgs-9ea88aa7be83b91c1c7a748c230e4f72f771855c.tar.lz
nixpkgs-9ea88aa7be83b91c1c7a748c230e4f72f771855c.tar.xz
nixpkgs-9ea88aa7be83b91c1c7a748c230e4f72f771855c.tar.zst
nixpkgs-9ea88aa7be83b91c1c7a748c230e4f72f771855c.zip
Merge pull request #16206 from hrdinka/fix/vim_configurable
vim_configurable: googlecode -> github
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/vim/configurable.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix
index 2a80f5d42ad..b46ac7d40d5 100644
--- a/pkgs/applications/editors/vim/configurable.nix
+++ b/pkgs/applications/editors/vim/configurable.nix
@@ -1,6 +1,6 @@
 # TODO tidy up eg The patchelf code is patching gvim even if you don't build it..
 # but I have gvim with python support now :) - Marc
-args@{pkgs, source ? "default", fetchurl, fetchhg, stdenv, ncurses, pkgconfig, gettext
+args@{pkgs, source ? "default", fetchurl, fetchFromGitHub, stdenv, ncurses, pkgconfig, gettext
 , composableDerivation, lib, config, glib, gtk, python, perl, tcl, ruby
 , libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
 , libICE
@@ -50,10 +50,11 @@ composableDerivation {
       builtins.getAttr source {
       "default" =
         # latest release
-      args.fetchhg {
-            url = "http://vim.googlecode.com/hg/";
-            rev = "v${version}";
-            sha256 = "01m67lvnkz0ad28ifj964zcg63y5hixplbnzas5xarj8vl3pc5a0";
+      args.fetchFromGitHub {
+        owner = "vim";
+        repo = "vim";
+        rev = "v${version}";
+        sha256 = "04hp2gqbbj9h872bgj1g9xcaj5qlg9q45v6by2ch9n105dng9aj3";
       };
 
       "vim-nox" =