topiary: 0.2.3 -> 0.3.0
[NixPkgs.git] / doc / hooks / patch-rc-path-hooks.section.md
blob5c870dc782c2f811fec154c4d0bd969543f2e023
2 # `patchRcPath` hooks {#sec-patchRcPathHooks}
4 These hooks provide shell-specific utilities (with the same name as the hook) to patch shell scripts meant to be sourced by software users.
6 The typical usage is to patch initialisation or [rc](https://unix.stackexchange.com/questions/3467/what-does-rc-in-bashrc-stand-for) scripts inside `$out/bin` or `$out/etc`.
7 Such scripts, when being sourced, would insert the binary locations of certain commands into `PATH`, modify other environment variables or run a series of start-up commands.
8 When shipped from the upstream, they sometimes use commands that might not be available in the environment they are getting sourced in.
10 The compatible shells for each hook are:
12  - `patchRcPathBash`: [Bash](https://www.gnu.org/software/bash/), [ksh](http://www.kornshell.org/), [zsh](https://www.zsh.org/) and other shells supporting the Bash-like parameter expansions.
13  - `patchRcPathCsh`: Csh scripts, such as those targeting [tcsh](https://www.tcsh.org/).
14  - `patchRcPathFish`: [Fish](https://fishshell.com/) scripts.
15  - `patchRcPathPosix`: POSIX-conformant shells supporting the limited parameter expansions specified by the POSIX standard. Current implementation uses the parameter expansion `${foo-}` only.
17 For each supported shell, it modifies the script with a `PATH` prefix that is later removed when the script ends.
18 It allows nested patching, which guarantees that a patched script may source another patched script.
20 Syntax to apply the utility to a script:
22 ```sh
23 patchRcPath<shell> <file> <PATH-prefix>
24 ```
26 Example usage:
28 Given a package `foo` containing an init script `this-foo.fish` that depends on `coreutils`, `man` and `which`,
29 patch the init script for users to source without having the above dependencies in their `PATH`:
31 ```nix
32 { lib, stdenv, patchRcPathFish}:
33 stdenv.mkDerivation {
35   # ...
37   nativeBuildInputs = [
38     patchRcPathFish
39   ];
41   postFixup = ''
42     patchRcPathFish $out/bin/this-foo.fish ${lib.makeBinPath [ coreutils man which ]}
43   '';
45 ```
47 ::: {.note}
48 `patchRcPathCsh` and `patchRcPathPosix` implementation depends on `sed` to do the string processing.
49 The others are in vanilla shell and have no third-party dependencies.
50 :::