8 with python3.pkgs; buildPythonApplication rec {
9 pname = "neovim-remote";
12 src = fetchFromGitHub {
14 repo = "neovim-remote";
16 sha256 = "0lbz4w8hgxsw4k1pxafrl3rhydrvi5jc6vnsmkvnhh6l6rxlmvmq";
20 # Fix a compatibility issue with neovim 0.8.0
22 url = "https://github.com/mhinz/neovim-remote/commit/56d2a4097f4b639a16902390d9bdd8d1350f948c.patch";
23 hash = "sha256-/PjE+9yfHtOUEp3xBaobzRM8Eo2wqOhnF1Es7SIdxvM=";
27 propagatedBuildInputs = [
38 doCheck = !stdenv.isDarwin;
41 export HOME="$(mktemp -d)"
45 description = "A tool that helps controlling nvim processes from a terminal";
46 homepage = "https://github.com/mhinz/neovim-remote/";
47 license = licenses.mit;
48 maintainers = with maintainers; [ edanaher ];
49 platforms = platforms.unix;