about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2019-07-19 17:07:04 -0700
committerGitHub <noreply@github.com>2019-07-19 17:07:04 -0700
commit04347b76f1aa393c9b4bb6749ce8ebad803008b3 (patch)
tree4c579801bbd8f9036bad5779ba548f72cf5f411c /pkgs
parentd734750608841852b121446bb7791cc4e224c257 (diff)
parentf1f66e22960d73527032a16a63bcca69f2be32b4 (diff)
downloadnixlib-04347b76f1aa393c9b4bb6749ce8ebad803008b3.tar
nixlib-04347b76f1aa393c9b4bb6749ce8ebad803008b3.tar.gz
nixlib-04347b76f1aa393c9b4bb6749ce8ebad803008b3.tar.bz2
nixlib-04347b76f1aa393c9b4bb6749ce8ebad803008b3.tar.lz
nixlib-04347b76f1aa393c9b4bb6749ce8ebad803008b3.tar.xz
nixlib-04347b76f1aa393c9b4bb6749ce8ebad803008b3.tar.zst
nixlib-04347b76f1aa393c9b4bb6749ce8ebad803008b3.zip
Merge pull request #65112 from r-ryantm/auto-update/neovim-remote
neovim-remote: 2.1.7 -> 2.1.9
Diffstat (limited to 'pkgs')
-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 52888c5f85d5..efece505ab94 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.1.7";
+  version = "2.1.9";
   disabled = !pythonPackages.isPy3k;
 
   src = fetchFromGitHub {
     owner = "mhinz";
     repo = "neovim-remote";
     rev = "v${version}";
-    sha256 = "014c8xvb7shy00vjx0b1k8zr7iknxskqab1aqvz9md3bn5rwkxm5";
+    sha256 = "1im7jq7vi2sbdrh95kbydbbfwdll6z9zh1w1vzh7ny1sigfphkpm";
   };
 
   propagatedBuildInputs = with pythonPackages; [ pynvim psutil ];