about summary refs log tree commit diff
path: root/pkgs/applications/editors/vim
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2022-08-09 19:46:04 +0100
committerJanne Heß <janne@hess.ooo>2022-08-09 19:46:04 +0100
commita42db97eb7cad4ec7df7ed9dc5e50131ad12db0f (patch)
tree1941e431a386cebfc0df8c058ec364931566b647 /pkgs/applications/editors/vim
parent6341ab932eb5ad0fe2995d0a7251be9e1f1c88b6 (diff)
downloadnixlib-a42db97eb7cad4ec7df7ed9dc5e50131ad12db0f.tar
nixlib-a42db97eb7cad4ec7df7ed9dc5e50131ad12db0f.tar.gz
nixlib-a42db97eb7cad4ec7df7ed9dc5e50131ad12db0f.tar.bz2
nixlib-a42db97eb7cad4ec7df7ed9dc5e50131ad12db0f.tar.lz
nixlib-a42db97eb7cad4ec7df7ed9dc5e50131ad12db0f.tar.xz
nixlib-a42db97eb7cad4ec7df7ed9dc5e50131ad12db0f.tar.zst
nixlib-a42db97eb7cad4ec7df7ed9dc5e50131ad12db0f.zip
vim: 9.0.0135 -> 9.0.0180 and replace inactive maintainer
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 b8d4c0a91631..95799f09cf44 100644
--- a/pkgs/applications/editors/vim/common.nix
+++ b/pkgs/applications/editors/vim/common.nix
@@ -1,12 +1,12 @@
 { lib, fetchFromGitHub }:
 rec {
-  version = "9.0.0135";
+  version = "9.0.0180";
 
   src = fetchFromGitHub {
     owner = "vim";
     repo = "vim";
     rev = "v${version}";
-    sha256 = "sha256-xAIfGNJIPO9XoSbAQTRa36Tjln3y+oWQk0lADCnL25g=";
+    hash = "sha256-38l97auTi6cue457bfRHme5fvsAmvk1MT2va1E/qguw=";
   };
 
   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 equirosa ];
+    maintainers = with maintainers; [ das_j equirosa ];
     platforms   = platforms.unix;
   };
 }