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: 0a56a467c597
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c5f38519097c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 20, 2019

  1. neovim-remote: 2.2.0 -> 2.2.1

    doronbehar authored and Matthieu Coudron committed Sep 20, 2019
    Copy the full SHA
    c5f3851 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.2.0";
version = "2.2.1";
disabled = !pythonPackages.isPy3k;

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

propagatedBuildInputs = with pythonPackages; [ pynvim psutil ];