Skip to content

Commit

Permalink
vim: Fix download location
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Feb 17, 2016
1 parent 8c1bb39 commit c191689
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/applications/editors/vim/default.nix
@@ -1,14 +1,15 @@
{ stdenv, fetchhg, ncurses, gettext, pkgconfig }:
{ stdenv, fetchFromGitHub, ncurses, gettext, pkgconfig }:

stdenv.mkDerivation rec {
name = "vim-${version}";

version = "7.4.410";

src = fetchhg {
url = "https://vim.googlecode.com/hg/";
rev = "v7-4-410";
sha256 = "145llhj6gq2bh9b7p8xkxc388krrximq80b87f3cn4w4d4k9fhqp";
src = fetchFromGitHub {
owner = "vim";
repo = "vim";
rev = "v7.4.410";
sha256 = "0nn4rdm1laycqdvm13dc2m3nhzlgg00kwyrsb6d1q2xd2qpgd5zl";
};

enableParallelBuilding = true;
Expand Down

0 comments on commit c191689

Please sign in to comment.