about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-03-29 12:31:38 +0200
committerGitHub <noreply@github.com>2022-03-29 12:31:38 +0200
commit761bee65a3330d1cc5244e918892ca683eb17124 (patch)
tree02c20c3329fa5e97efdf8a0380c5cc579a54d9e7 /pkgs/applications/editors/neovim
parentc618329a61cd39c2b1d34bdd6e5d7127b1d14e3a (diff)
parent1fff543a34647f34eab621084b160c4bc4dc147e (diff)
downloadnixlib-761bee65a3330d1cc5244e918892ca683eb17124.tar
nixlib-761bee65a3330d1cc5244e918892ca683eb17124.tar.gz
nixlib-761bee65a3330d1cc5244e918892ca683eb17124.tar.bz2
nixlib-761bee65a3330d1cc5244e918892ca683eb17124.tar.lz
nixlib-761bee65a3330d1cc5244e918892ca683eb17124.tar.xz
nixlib-761bee65a3330d1cc5244e918892ca683eb17124.tar.zst
nixlib-761bee65a3330d1cc5244e918892ca683eb17124.zip
Merge pull request #166207 from SuperSandro2000/neovim-remote
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/neovim-remote.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/editors/neovim/neovim-remote.nix b/pkgs/applications/editors/neovim/neovim-remote.nix
index aca88252ebe1..52c3c08ea847 100644
--- a/pkgs/applications/editors/neovim/neovim-remote.nix
+++ b/pkgs/applications/editors/neovim/neovim-remote.nix
@@ -4,8 +4,6 @@
 , neovim
 }:
 
-with lib;
-
 with python3.pkgs; buildPythonApplication rec {
   pname = "neovim-remote";
   version = "2.4.0";
@@ -35,7 +33,7 @@ with python3.pkgs; buildPythonApplication rec {
     "test_escape_double_quotes_in_filenames"
   ];
 
-  meta = {
+  meta = with lib; {
     description = "A tool that helps controlling nvim processes from a terminal";
     homepage = "https://github.com/mhinz/neovim-remote/";
     license = licenses.mit;