mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
43dade238f
This is a new package that provides a shell hook to make it easy to declare manpages and shell completions in a manner that doesn't require remembering where to actually install them. Basic usage looks like { stdenv, installShellFiles, ... }: stdenv.mkDerivation { # ... nativeBuildInputs = [ installShellFiles ]; postInstall = '' installManPage doc/foobar.1 installShellCompletion --bash share/completions/foobar.bash installShellCompletion --fish share/completions/foobar.fish installShellCompletion --zsh share/completions/_foobar ''; # ... } See source comments for more details on the functions.
5 lines
191 B
Nix
5 lines
191 B
Nix
{ makeSetupHook }:
|
|
|
|
# See the header comment in ../setup-hooks/install-shell-files.sh for example usage.
|
|
makeSetupHook { name = "install-shell-files"; } ../setup-hooks/install-shell-files.sh
|