···11# Build helpers {#part-builders}2233+A build helper is a function that produces derivations.44+55+:::{.warning}66+This is not to be confused with the [`builder` argument of the Nix `derivation` primitive](https://nixos.org/manual/nix/unstable/language/derivations.html), which refers to the executable that produces the build result, or [remote builder](https://nixos.org/manual/nix/stable/advanced-topics/distributed-builds.html), which refers to a remote machine that could run such an executable.77+:::88+99+Such a function is usually designed to abstract over a typical workflow for a given programming language or framework.1010+This allows declaring a build recipe by setting a limited number of options relevant to the particular use case instead of using the `derivation` function directly.1111+1212+[`stdenv.mkDerivation`](#part-stdenv) is the most widely used build helper, and serves as a basis for many others.1313+In addition, it offers various options to customize parts of the builds.1414+1515+There is no uniform interface for build helpers.1616+[Trivial build helpers](#chap-trivial-builders) and [fetchers](#chap-pkgs-fetchers) have various input types for convenience.1717+[Language- or framework-specific build helpers](#chap-language-support) usually follow the style of `stdenv.mkDerivation`, which accepts an attribute set or a fixed-point function taking an attribute set.1818+319```{=include=} chapters420build-helpers/fetchers.chapter.md521build-helpers/trivial-build-helpers.chapter.md