summaryrefslogtreecommitdiff
path: root/doc/shell.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/shell.md')
-rw-r--r--doc/shell.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/shell.md b/doc/shell.md
index ca90acac92db..a4f999695cbc 100644
--- a/doc/shell.md
+++ b/doc/shell.md
@@ -13,8 +13,8 @@ with nix-build.
```nix
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
- # this will merge all the inputs from hello and gnutar into the shell environment
- mergeInputs = with pkgs; [ hello gnutar ];
+ # this will make all the build inputs from hello and gnutar available to the shell environment
+ inputsFrom = with pkgs; [ hello gnutar ];
buildInputs = [ pkgs.gnumake ];
}
```