about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2018-10-04 15:34:04 +0900
committerMatthieu Coudron <mattator@gmail.com>2018-10-04 15:34:04 +0900
commite30a2b0207803730da54ecfeea3e519d0f937918 (patch)
tree467ea1824618bf4d7fe14595f96aca78af0160d3 /pkgs
parent13b2903169f18ac98ed737effb36dabc48051978 (diff)
downloadnixlib-e30a2b0207803730da54ecfeea3e519d0f937918.tar
nixlib-e30a2b0207803730da54ecfeea3e519d0f937918.tar.gz
nixlib-e30a2b0207803730da54ecfeea3e519d0f937918.tar.bz2
nixlib-e30a2b0207803730da54ecfeea3e519d0f937918.tar.lz
nixlib-e30a2b0207803730da54ecfeea3e519d0f937918.tar.xz
nixlib-e30a2b0207803730da54ecfeea3e519d0f937918.tar.zst
nixlib-e30a2b0207803730da54ecfeea3e519d0f937918.zip
khard: fixup zsh autocompletion
I introduced an error in, install -D will create the folders until the last component excluded
so I needed to add the filename for it to create _khard
https://github.com/NixOS/nixpkgs/pull/46515
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/khard/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/khard/default.nix b/pkgs/applications/misc/khard/default.nix
index 35c3c9748492..8ec4e7f06d16 100644
--- a/pkgs/applications/misc/khard/default.nix
+++ b/pkgs/applications/misc/khard/default.nix
@@ -41,7 +41,7 @@ in with python.pkgs; buildPythonApplication rec {
   ];
 
   postInstall = ''
-    install -D misc/zsh/_khard $out/share/zsh/site-functions/
+    install -D misc/zsh/_khard $out/share/zsh/site-functions/_khard
   '';
 
   # Fails; but there are no tests anyway.