vim: Update vim to 7.4.335

This commit is contained in:
Paul Colomiets 2014-07-09 22:55:17 +03:00 committed by Bjørn Forsman
parent 5e99b0553c
commit e376e9731d
2 changed files with 8 additions and 8 deletions

View File

@ -34,18 +34,18 @@ composableDerivation {
else stdenv ).mkDerivation; else stdenv ).mkDerivation;
} (fix: { } (fix: {
name = "vim_configurable-7.4.316"; name = "vim_configurable-7.4.335";
enableParallelBuilding = true; # test this enableParallelBuilding = true; # test this
src = src =
builtins.getAttr source { builtins.getAttr source {
"default" = "default" =
# latest release # latest release
args.fetchhg { args.fetchhg {
url = "https://vim.googlecode.com/hg/"; url = "https://vim.googlecode.com/hg/";
rev = "v7-4-316"; rev = "v7-4-335";
sha256 = "0scxx33p1ky0wihk04xqpd6rygp1crm0hx446zbjwbsjj6xxn7sx"; sha256 = "0qnpzfcbi6fhz82pj68l4vrnigca1akq2ksrxz6krwlfhns6jhhj";
}; };
"vim-nox" = "vim-nox" =
@ -62,7 +62,7 @@ composableDerivation {
# if darwin support is enabled, we want to make sure we're not building with # if darwin support is enabled, we want to make sure we're not building with
# OS-installed python framework # OS-installed python framework
patches = stdenv.lib.optionals patches = stdenv.lib.optionals
(stdenv.isDarwin && (config.vim.darwin or true)) (stdenv.isDarwin && (config.vim.darwin or true))
[ ./python_framework.patch ]; [ ./python_framework.patch ];

View File

@ -3,12 +3,12 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "vim-${version}"; name = "vim-${version}";
version = "7.4.316"; version = "7.4.335";
src = fetchhg { src = fetchhg {
url = "https://vim.googlecode.com/hg/"; url = "https://vim.googlecode.com/hg/";
rev = "v7-4-316"; rev = "v7-4-335";
sha256 = "0scxx33p1ky0wihk04xqpd6rygp1crm0hx446zbjwbsjj6xxn7sx"; sha256 = "0qnpzfcbi6fhz82pj68l4vrnigca1akq2ksrxz6krwlfhns6jhhj";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;