Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d38d6aba1f1f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a111f954017d
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 20, 2019

  1. neovim-remote: 2.1.9 -> 2.2.0

    doronbehar authored and Matthieu Coudron committed Aug 20, 2019
    Copy the full SHA
    a111f95 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/editors/neovim/neovim-remote.nix
4 changes: 2 additions & 2 deletions pkgs/applications/editors/neovim/neovim-remote.nix
Original file line number Diff line number Diff line change
@@ -4,14 +4,14 @@ with stdenv.lib;

pythonPackages.buildPythonApplication rec {
pname = "neovim-remote";
version = "2.1.9";
version = "2.2.0";
disabled = !pythonPackages.isPy3k;

src = fetchFromGitHub {
owner = "mhinz";
repo = "neovim-remote";
rev = "v${version}";
sha256 = "1im7jq7vi2sbdrh95kbydbbfwdll6z9zh1w1vzh7ny1sigfphkpm";
sha256 = "0vvwygyar835z947d5zgjywyhl7ajj63z0l8sb7w9kj1w5snb43x";
};

propagatedBuildInputs = with pythonPackages; [ pynvim psutil ];