From 712751d5b56b0ff0f2839cf271f72bbc8719ab63 Mon Sep 17 00:00:00 2001 From: Edil Medeiros Date: Sun, 8 Mar 2026 19:49:21 -0300 Subject: [PATCH] Update hello version in text --- pills/10-developing-with-nix-shell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pills/10-developing-with-nix-shell.md b/pills/10-developing-with-nix-shell.md index 07f9e4a..e71544a 100644 --- a/pills/10-developing-with-nix-shell.md +++ b/pills/10-developing-with-nix-shell.md @@ -37,9 +37,9 @@ The derivation didn't install, but it did build. Note the following: - We sourced `builder.sh` and it ran all of the build steps, including setting up the `PATH` for us. -- The working directory is no longer a temp directory created by `nix-build`, but is instead the directory in which we entered the shell. Therefore, `hello-2.10` has been unpacked in the current directory. +- The working directory is no longer a temp directory created by `nix-build`, but is instead the directory in which we entered the shell. Therefore, `hello-2.12.1` has been unpacked in the current directory. -We are able to `cd` into `hello-2.10` and type `make`, because `make` is now available. +We are able to `cd` into `hello-2.12.1` and type `make`, because `make` is now available. The take-away is that `nix-shell` drops us in a shell with the same (or very similar) environment used to run the builder.