about summary refs log tree commit diff
path: root/pkgs/applications/editors/vim
diff options
context:
space:
mode:
authorEduardo Quiros <eduardo@eduardoquiros.com>2019-12-16 11:55:04 -0600
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-12-31 09:28:42 +0100
commit3e50d4a6f3e50dfe57001f200050102830f24d22 (patch)
tree31b74e643d79e03e5b0858fdf589c8ade5e184d4 /pkgs/applications/editors/vim
parent25fb1a02a35bf024c9d909b7629d1ca653f6cfe0 (diff)
downloadnixlib-3e50d4a6f3e50dfe57001f200050102830f24d22.tar
nixlib-3e50d4a6f3e50dfe57001f200050102830f24d22.tar.gz
nixlib-3e50d4a6f3e50dfe57001f200050102830f24d22.tar.bz2
nixlib-3e50d4a6f3e50dfe57001f200050102830f24d22.tar.lz
nixlib-3e50d4a6f3e50dfe57001f200050102830f24d22.tar.xz
nixlib-3e50d4a6f3e50dfe57001f200050102830f24d22.tar.zst
nixlib-3e50d4a6f3e50dfe57001f200050102830f24d22.zip
vim: 8.1.2407 -> 8.2.0013
Diffstat (limited to 'pkgs/applications/editors/vim')
-rw-r--r--pkgs/applications/editors/vim/common.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/vim/common.nix b/pkgs/applications/editors/vim/common.nix
index ceecfa73ce4c..485f1d0dca3d 100644
--- a/pkgs/applications/editors/vim/common.nix
+++ b/pkgs/applications/editors/vim/common.nix
@@ -1,12 +1,12 @@
 { lib, fetchFromGitHub }:
 rec {
-  version = "8.1.2407";
+  version = "8.2.0013";
 
   src = fetchFromGitHub {
     owner = "vim";
     repo = "vim";
     rev = "v${version}";
-    sha256 = "1h23lncm8py0ip8p61y8hivmnd8fzf8xpwpkd73d3a3fpiyd2yx8";
+    sha256 = "00sc9zdjdww6f3svwf0nxpx8q2zp1n1r978h7ijapgvn2ysx2z1f";
   };
 
   enableParallelBuilding = true;
@@ -24,7 +24,7 @@ rec {
     description = "The most popular clone of the VI editor";
     homepage    = http://www.vim.org;
     license     = licenses.vim;
-    maintainers = with maintainers; [ lovek323 ];
+    maintainers = with maintainers; [ lovek323 equirosa ];
     platforms   = platforms.unix;
   };
 }