We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29e0ef4 commit 7ab149eCopy full SHA for 7ab149e
flake.nix
@@ -59,6 +59,14 @@
59
allowBuiltinFetchGit = true;
60
};
61
62
+ nativeBuildInputs = [ pkgs.installShellFiles ];
63
+ postInstall = lib.optionalString (pkgs.stdenv.buildPlatform.canExecute pkgs.stdenv.hostPlatform) ''
64
+ installShellCompletion --cmd lintspec \
65
+ --bash <($out/bin/lintspec completions -s bash) \
66
+ --fish <($out/bin/lintspec completions -s fish) \
67
+ --zsh <($out/bin/lintspec completions -s zsh)
68
+ '';
69
+
70
doCheck = false;
71
72
}
0 commit comments