2021-05-01 00:29:59 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, neovim
|
2022-10-02 17:49:32 +00:00
|
|
|
, fetchpatch
|
2021-05-01 00:29:59 +00:00
|
|
|
}:
|
2017-02-03 21:58:22 +00:00
|
|
|
|
2021-05-01 00:29:59 +00:00
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
2018-06-23 13:27:58 +00:00
|
|
|
pname = "neovim-remote";
|
2022-05-22 08:01:57 +00:00
|
|
|
version = "2.5.1";
|
2017-02-03 21:58:22 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mhinz";
|
|
|
|
repo = "neovim-remote";
|
2018-05-28 12:59:57 +00:00
|
|
|
rev = "v${version}";
|
2022-05-22 08:01:57 +00:00
|
|
|
sha256 = "0lbz4w8hgxsw4k1pxafrl3rhydrvi5jc6vnsmkvnhh6l6rxlmvmq";
|
2017-02-03 21:58:22 +00:00
|
|
|
};
|
|
|
|
|
2022-10-02 17:49:32 +00:00
|
|
|
patches = [
|
|
|
|
# Fix a compatibility issue with neovim 0.8.0
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/mhinz/neovim-remote/commit/56d2a4097f4b639a16902390d9bdd8d1350f948c.patch";
|
|
|
|
hash = "sha256-/PjE+9yfHtOUEp3xBaobzRM8Eo2wqOhnF1Es7SIdxvM=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-05-01 00:29:59 +00:00
|
|
|
propagatedBuildInputs = [
|
2020-02-13 19:24:22 +00:00
|
|
|
pynvim
|
|
|
|
psutil
|
|
|
|
setuptools
|
|
|
|
];
|
2017-02-10 16:43:42 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2021-05-01 00:29:59 +00:00
|
|
|
neovim
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2022-07-13 06:56:58 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2022-10-02 17:49:32 +00:00
|
|
|
preCheck = ''
|
|
|
|
export HOME="$(mktemp -d)"
|
|
|
|
'';
|
|
|
|
|
2022-03-29 08:45:23 +00:00
|
|
|
meta = with lib; {
|
2017-02-10 16:43:42 +00:00
|
|
|
description = "A tool that helps controlling nvim processes from a terminal";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/mhinz/neovim-remote/";
|
2017-02-10 16:43:42 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ edanaher ];
|
|
|
|
platforms = platforms.unix;
|
2022-03-29 02:15:31 +00:00
|
|
|
mainProgram = "nvr";
|
2017-02-10 16:43:42 +00:00
|
|
|
};
|
2017-02-03 21:58:22 +00:00
|
|
|
}
|