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

View File

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