summary refs log tree commit diff
path: root/pkgs/test
diff options
context:
space:
mode:
authorMatthieu Coudron <886074+teto@users.noreply.github.com>2023-09-26 20:31:31 +0200
committerMatthieu Coudron <886074+teto@users.noreply.github.com>2023-09-27 19:08:38 +0200
commit0ab2c9642991c787c38cc131e7c5c935bff9cd88 (patch)
treea688886e5fdc4886163b4d66b29d6a2938ee7d8f /pkgs/test
parentc22ca8e82097dc7650053c85509d9369ce8726bf (diff)
downloadnixpkgs-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar
nixpkgs-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.gz
nixpkgs-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.bz2
nixpkgs-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.lz
nixpkgs-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.xz
nixpkgs-0ab2c9642991c787c38cc131e7c5c935bff9cd88.tar.zst
nixpkgs-0ab2c9642991c787c38cc131e7c5c935bff9cd88.zip
vimUtils: buildVimPluginFrom2Nix renamed to buildVimPlugin
the `from2Nix` suffix is a legacy from vim2nix but we dont use that anymore. It makes the name of the function unusual and long.
Diffstat (limited to 'pkgs/test')
-rw-r--r--pkgs/test/vim/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/test/vim/default.nix b/pkgs/test/vim/default.nix
index 4d8e59a306a..33e1e551d4f 100644
--- a/pkgs/test/vim/default.nix
+++ b/pkgs/test/vim/default.nix
@@ -3,7 +3,7 @@
 , pkgs
 }:
 let
-  inherit (vimUtils) buildVimPluginFrom2Nix;
+  inherit (vimUtils) buildVimPlugin;
 
   packages.myVimPackage.start = with vimPlugins; [ vim-nix ];