From d0b48549fc938dbe816af9f000d9981cb6e18cb8 Mon Sep 17 00:00:00 2001 From: Icy-Thought Date: Sun, 13 Oct 2024 00:17:28 +0200 Subject: [PATCH] zsh-abbr: rewrite comment - bin dir (only changelog) --- pkgs/shells/zsh/zsh-abbr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/shells/zsh/zsh-abbr/default.nix b/pkgs/shells/zsh/zsh-abbr/default.nix index 46cd9307ffa8..51ef3b8bdf73 100644 --- a/pkgs/shells/zsh/zsh-abbr/default.nix +++ b/pkgs/shells/zsh/zsh-abbr/default.nix @@ -17,11 +17,11 @@ stdenv.mkDerivation rec { strictDeps = true; installPhase = '' - # Needed so that `man` can find the manpage, since it looks via PATH - mkdir -p $out/bin install -D zsh-abbr.plugin.zsh $out/share/zsh/${pname}/zsh-abbr.plugin.zsh install -D zsh-abbr.zsh $out/share/zsh/${pname}/zsh-abbr.zsh install -D completions/_abbr $out/share/zsh/${pname}/completions/_abbr + + # Required for `man` to find the manpage of abbr, since it looks via PATH mv man $out/share/man '';