zsh: enable use of plugins with non-standard plugin filenames
Alan Pearce alan@alanpearce.eu
Sun, 26 Mar 2023 13:01:59 +0200
1 files changed, 2 insertions(+), 2 deletions(-)
jump to
M user/settings/zsh.nix → user/settings/zsh.nix
@@ -14,8 +14,8 @@ if stdenv.isDarwin then "" else "--time-style=long-iso"; zshrc = ".config/zsh/.zshrc"; - mkZshPlugin = attrs: { - name = attrs.name; + mkZshPlugin = attrs@{ name, file ? "${name}.plugin.zsh", ... }: { + inherit name file; src = stdenv.mkDerivation { inherit (attrs) src; name = "zsh-plugin-${attrs.name}";