about summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@sap.com>2022-03-29 10:45:23 +0200
committerSandro Jäckel <sandro.jaeckel@sap.com>2022-03-29 10:45:23 +0200
commit1fff543a34647f34eab621084b160c4bc4dc147e (patch)
treea38d11f36f95e25b91c02d3edd9e1bc9a7c8c056 /pkgs/applications/editors/neovim
parent72dab1fa308ffb4b8480343417780f1f731cbdb0 (diff)
downloadnixlib-1fff543a34647f34eab621084b160c4bc4dc147e.tar
nixlib-1fff543a34647f34eab621084b160c4bc4dc147e.tar.gz
nixlib-1fff543a34647f34eab621084b160c4bc4dc147e.tar.bz2
nixlib-1fff543a34647f34eab621084b160c4bc4dc147e.tar.lz
nixlib-1fff543a34647f34eab621084b160c4bc4dc147e.tar.xz
nixlib-1fff543a34647f34eab621084b160c4bc4dc147e.tar.zst
nixlib-1fff543a34647f34eab621084b160c4bc4dc147e.zip
neovim: remove with lib over entire file
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 2b1281ae21be..50aebf406ba3 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;