mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
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:
parent
435c5d2c42
commit
d438d0e98b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user