summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-01-06 19:10:52 -0800
committerR. RyanTM <ryantm-bot@ryantm.com>2020-01-06 19:10:52 -0800
commit42a0d7f315a057fefe0c81359d25c415355b0170 (patch)
tree6e1c41b11e3b7bc5c8ca96ffbe696d634741a71c
parent17ab5f9d88b3b4e8442421bc4bf4eb1e913bcc6a (diff)
downloadnixpkgs-42a0d7f315a057fefe0c81359d25c415355b0170.tar
nixpkgs-42a0d7f315a057fefe0c81359d25c415355b0170.tar.gz
nixpkgs-42a0d7f315a057fefe0c81359d25c415355b0170.tar.bz2
nixpkgs-42a0d7f315a057fefe0c81359d25c415355b0170.tar.lz
nixpkgs-42a0d7f315a057fefe0c81359d25c415355b0170.tar.xz
nixpkgs-42a0d7f315a057fefe0c81359d25c415355b0170.tar.zst
nixpkgs-42a0d7f315a057fefe0c81359d25c415355b0170.zip
neovim-remote: 2.2.3 -> 2.4.0
-rw-r--r--pkgs/applications/editors/neovim/neovim-remote.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/neovim/neovim-remote.nix b/pkgs/applications/editors/neovim/neovim-remote.nix
index 9893c6085a6..aae37b5a262 100644
--- a/pkgs/applications/editors/neovim/neovim-remote.nix
+++ b/pkgs/applications/editors/neovim/neovim-remote.nix
@@ -4,14 +4,14 @@ with stdenv.lib;
 
 pythonPackages.buildPythonApplication rec {
   pname = "neovim-remote";
-  version = "2.2.3";
+  version = "2.4.0";
   disabled = !pythonPackages.isPy3k;
 
   src = fetchFromGitHub {
     owner = "mhinz";
     repo = "neovim-remote";
     rev = "v${version}";
-    sha256 = "0g7gs5gigk3krydxdpmscgfr1fms0a6rc6am2y4c5szkgbd1d0ph";
+    sha256 = "0jlw0qksak4bdzddpsj74pm2f2bgpj3cwrlspdjjy0j9qzg0mpl9";
   };
 
   propagatedBuildInputs = with pythonPackages; [ pynvim psutil ];