mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
vim_configurable: googlecode -> github
Vim is now hosted on github instead of googlecode.
This commit is contained in:
parent
8a49ef16f1
commit
8cbbc73dce
@ -1,6 +1,6 @@
|
|||||||
# TODO tidy up eg The patchelf code is patching gvim even if you don't build it..
|
# 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
|
# 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
|
, composableDerivation, lib, config, glib, gtk, python, perl, tcl, ruby
|
||||||
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
|
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
|
||||||
, libICE
|
, libICE
|
||||||
@ -50,10 +50,11 @@ composableDerivation {
|
|||||||
builtins.getAttr source {
|
builtins.getAttr source {
|
||||||
"default" =
|
"default" =
|
||||||
# latest release
|
# latest release
|
||||||
args.fetchhg {
|
args.fetchFromGitHub {
|
||||||
url = "http://vim.googlecode.com/hg/";
|
owner = "vim";
|
||||||
|
repo = "vim";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "01m67lvnkz0ad28ifj964zcg63y5hixplbnzas5xarj8vl3pc5a0";
|
sha256 = "04hp2gqbbj9h872bgj1g9xcaj5qlg9q45v6by2ch9n105dng9aj3";
|
||||||
};
|
};
|
||||||
|
|
||||||
"vim-nox" =
|
"vim-nox" =
|
||||||
|
Loading…
Reference in New Issue
Block a user