2020-12-13 15:47:22 -03:00
# pkgs.mkShell {#sec-pkgs-mkShell}
2022-01-08 01:54:04 +01:00
`pkgs.mkShell` is a specialized `stdenv.mkDerivation` that removes some
repetition when using it with `nix-shell` (or `nix develop` ).
2020-12-13 15:47:22 -03:00
## Usage {#sec-pkgs-mkShell-usage}
2022-01-08 01:54:04 +01:00
Here is a common usage example:
2020-12-13 15:47:22 -03:00
```nix
2025-04-11 09:36:54 +02:00
{
pkgs ? import < nixpkgs > { },
}:
2020-12-13 15:47:22 -03:00
pkgs.mkShell {
2021-05-13 19:17:29 +02:00
packages = [ pkgs.gnumake ];
2022-01-08 01:54:04 +01:00
2025-04-11 09:36:54 +02:00
inputsFrom = [
pkgs.hello
pkgs.gnutar
];
2022-01-08 01:54:04 +01:00
shellHook = ''
export DEBUG=1
'';
2020-12-13 15:47:22 -03:00
}
```
2022-01-08 01:54:04 +01:00
2023-03-27 22:39:11 +02:00
## Attributes {#sec-pkgs-mkShell-attributes}
2022-01-08 01:54:04 +01:00
* `name` (default: `nix-shell` ). Set the name of the derivation.
* `packages` (default: `[]` ). Add executable packages to the `nix-shell` environment.
* `inputsFrom` (default: `[]` ). Add build dependencies of the listed derivations to the `nix-shell` environment.
* `shellHook` (default: `""` ). Bash statements that are executed by `nix-shell` .
... all the attributes of `stdenv.mkDerivation` .
2023-10-07 12:58:18 +02:00
## Variants {#sec-pkgs-mkShell-variants}
`pkgs.mkShellNoCC` is a variant that uses `stdenvNoCC` instead of `stdenv` as base environment. This is useful if no C compiler is needed in the shell environment.
2023-03-27 22:39:11 +02:00
## Building the shell {#sec-pkgs-mkShell-building}
2022-01-08 01:54:04 +01:00
This derivation output will contain a text file that contains a reference to
all the build inputs. This is useful in CI where we want to make sure that
every derivation, and its dependencies, build properly. Or when creating a GC
root so that the build dependencies don't get garbage-collected.