maintainers: remove email for amuckstot30 (#360059)
[NixPkgs.git] / doc / hooks / haredo.section.md
blobe7ec269a7364f3b8146e8ecb95c73518d72509dc
1 # `haredo` {#haredo-hook}
3 This hook uses [the `haredo` command runner](https://sr.ht/~autumnull/haredo/) to build, check, and install the package. It overrides `buildPhase`, `checkPhase`, and `installPhase` by default.
5 The hook builds its targets in parallel if [`config.enableParallelBuilding`](#var-stdenv-enableParallelBuilding) is set to `true`.
7 ## `buildPhase` {#haredo-hook-buildPhase}
9 This phase attempts to build the default target.
11 []{#haredo-hook-haredoBuildTargets} Targets can be explicitly set by adding a string to the `haredoBuildTargets` list.
13 []{#haredo-hook-dontUseHaredoBuild} This behavior can be disabled by setting `dontUseHaredoBuild` to `true`.
15 ## `checkPhase` {#haredo-hook-checkPhase}
17 This phase searches for the `check.do` or `test.do` targets, running them if they exist.
19 []{#haredo-hook-haredoCheckTargets} Targets can be explicitly set by adding a string to the `haredoCheckTargets` list.
21 []{#haredo-hook-dontUseHaredoCheck} This behavior can be disabled by setting `dontUseHaredoCheck` to `true`.
23 ## `installPhase` {#haredo-hook-installPhase}
25 This phase attempts to build the `install.do` target, if it exists.
27 []{#haredo-hook-haredoInstallTargets} Targets can be explicitly set by adding a string to the `haredoInstallTargets` list.
29 []{#haredo-hook-dontUseHaredoInstall} This behavior can be disabled by setting `dontUseHaredoInstall` to `true`.