about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-03-06 08:21:03 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2020-03-06 08:21:03 +0100
commitfed080b772e1d8679db383488cf2f80f0288c54b (patch)
tree3510150d726c7743934a220b94df47a4cbfb8d6c /pkgs/applications/editors
parent05aeaea23d5a56b93ae5886e0d11b6c038971a82 (diff)
parent8d72e6bd5fa8fb40f7aafe955c2ec888231b846b (diff)
downloadnixlib-fed080b772e1d8679db383488cf2f80f0288c54b.tar
nixlib-fed080b772e1d8679db383488cf2f80f0288c54b.tar.gz
nixlib-fed080b772e1d8679db383488cf2f80f0288c54b.tar.bz2
nixlib-fed080b772e1d8679db383488cf2f80f0288c54b.tar.lz
nixlib-fed080b772e1d8679db383488cf2f80f0288c54b.tar.xz
nixlib-fed080b772e1d8679db383488cf2f80f0288c54b.tar.zst
nixlib-fed080b772e1d8679db383488cf2f80f0288c54b.zip
Merge staging into staging-next
Diffstat (limited to 'pkgs/applications/editors')
-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 e5ee1da75801..03b7d57b49dc 100644
--- a/pkgs/applications/editors/vim/common.nix
+++ b/pkgs/applications/editors/vim/common.nix
@@ -1,12 +1,12 @@
 { lib, fetchFromGitHub }:
 rec {
-  version = "8.2.0227";
+  version = "8.2.0343";
 
   src = fetchFromGitHub {
     owner = "vim";
     repo = "vim";
     rev = "v${version}";
-    sha256 = "1yi7l2yd214iv6i8pr52m272mlzps5v3h6xdgr1770xfz4y1yc0h";
+    sha256 = "063i52h8v7f87zamrw2ph057f0x2nzwf1s0izrm2psy41cyf4wa3";
   };
 
   enableParallelBuilding = true;
@@ -22,7 +22,7 @@ rec {
 
   meta = with lib; {
     description = "The most popular clone of the VI editor";
-    homepage    = http://www.vim.org;
+    homepage    = "http://www.vim.org";
     license     = licenses.vim;
     maintainers = with maintainers; [ lovek323 equirosa ];
     platforms   = platforms.unix;