@@ -34,7 +34,7 @@ new environment variables, which then need to be unset. The `stdenv` itself
3434contains either GCC or Clang which makes it hard to select a specific C
3535compiler.
3636
37- This is why ` mkDevShell ` builds its environment from a ` builtins.derivation ` .
37+ This is why ` mkShell ` builds its environment from a ` builtins.derivation ` .
3838
3939direnv loads will change from:
4040```
@@ -65,11 +65,10 @@ those are useful yet:
6565When entering a random project, it's useful to get a quick view of what
6666commands are available.
6767
68- When running ` nix-shell ` or ` nix develop ` , ` mkDevShell ` prints a welcome
69- message:
68+ When running ` nix-shell ` or ` nix develop ` , ` mkShell ` prints a welcome message:
7069
7170```
72- ### 🔨 Welcome to mkDevShell ####
71+ 🔨 Welcome to devshell
7372
7473# Commands
7574
@@ -90,13 +89,12 @@ handle 80% of the use-cases and falling back on Nix is always possible.
9089Life is not complete otherwise. Huhu.
9190
9291Packages that contain bash completions will automatically be loaded by
93- ` mkDevShell ` in ` nix-shell ` or ` nix develop ` modes.
92+ ` mkShell ` in ` nix-shell ` or ` nix develop ` modes.
9493
9594### Capture development dependencies in CI
9695
9796With a CI + Binary cache setup, one often wants to be able to capture all the
98- build inputs of a ` shell.nix ` . Before, ` pkgs.mkShell ` would even refuse to
99- build! (my fault really). With ` pkgs.mkDevShell ` , capturing all of the
97+ build inputs of a ` shell.nix ` . With ` mkShell ` capturing all of the
10098development dependencies is as easy as:
10199
102100``` sh
0 commit comments