Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in pill 7 #128

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pills/07-working-derivation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<xi:include href="./07/simple-derivation.xml" />

We did it! The contents of
<filename>/nix/store/w024zci0x1hh1wj6gjq0jagkc1sgrf5r-<emphasis>foo</emphasis></filename>
<filename>/nix/store/gczb4qrag22harvv693wwnflqy7lx5pb-<emphasis>foo</emphasis></filename>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will change whenever stdenv changes (several times a year). can probably not change this

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about the other two changes. Are they OK to be committed ?

is really foo. We've built our first derivation.
</para>
<para>
Expand Down Expand Up @@ -173,7 +173,7 @@
that they are not changed during the build process and that the deployment
is stateless and independent of the building machine.
<filename>builder.sh</filename> is not only in the arguments passed to the
builder, it's also in the input derivations.
builder, it's also in the input sources.
</para>
<para>
Given that <filename>builder.sh</filename> is a plain file, it has no .drv
Expand Down Expand Up @@ -231,9 +231,9 @@
is the path to <filename>simple.c</filename> in the nix store. As an
exercise, pretty print the .drv file. You'll see
<filename>simple_builder.sh</filename> and <filename>simple.c</filename>
listed in the input derivations, along with
listed in the input sources while
<application>bash</application>, <application>gcc</application> and
<application>coreutils</application> .drv files. The newly added
<application>coreutils</application> .drv files are listed in input derivations. The newly added
environment variables described above will also appear.
</para>
<para>
Expand Down