about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim/neovim-remote.nix
diff options
context:
space:
mode:
authorTae Selene Sandoval Murgan <tssm@users.noreply.github.com>2022-07-13 08:56:58 +0200
committerMatthieu Coudron <teto@users.noreply.github.com>2022-07-13 10:11:27 +0200
commitf88533ec37fca4cce90fe6ddf50f5b817b089ce8 (patch)
tree07ba717ea0e5e62b40b3589971607c72c06ee263 /pkgs/applications/editors/neovim/neovim-remote.nix
parentd43a7bbde28feaa61a5141c82f73692ec37756f1 (diff)
neovim-remote: disable tests on Darwin
The only enabled test started to fail with write errors. Setting
HOME=$TMPDIR works, but then it fails the same way than the disabled
ones
Diffstat (limited to 'pkgs/applications/editors/neovim/neovim-remote.nix')
-rw-r--r--pkgs/applications/editors/neovim/neovim-remote.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/editors/neovim/neovim-remote.nix b/pkgs/applications/editors/neovim/neovim-remote.nix
index ef3b1590c1090..b18811dd09805 100644
--- a/pkgs/applications/editors/neovim/neovim-remote.nix
+++ b/pkgs/applications/editors/neovim/neovim-remote.nix
@@ -33,6 +33,8 @@ with python3.pkgs; buildPythonApplication rec {
     "test_escape_double_quotes_in_filenames"
   ];
 
+  doCheck = !stdenv.isDarwin;
+
   meta = with lib; {
     description = "A tool that helps controlling nvim processes from a terminal";
     homepage = "https://github.com/mhinz/neovim-remote/";