diff --git a/pills/08-generic-builders.xml b/pills/08-generic-builders.xml index 379481e..4ab190b 100644 --- a/pills/08-generic-builders.xml +++ b/pills/08-generic-builders.xml @@ -25,14 +25,14 @@ In the previous pill we packaged a simple .c file, which was being - compiled with a raw gcc call. That's not a good example of project. Many - use autotools, and since we're going to generalize our builder, better do - it with the most used build system. + compiled with a raw gcc call. That's not a good example of a project. Many + use autotools, and since we're going to generalize our builder, it would + be better do it with the most used build system. GNU hello world, - despite its name, is a simple yet complete project using autotools. + despite its name, is a simple yet complete project which uses autotools. Fetch the latest tarball here: http://ftp.gnu.org/gnu/hello/hello-2.10.tar.gz. @@ -247,15 +247,16 @@ - Finally! We got a very simple description of a package! A couple of - remarks that you may find useful to keep understanding the nix language: + Finally! We got a very simple description of a package! Below are a + couple of remarks that you may find useful as you're continuing to + understand the nix language: We assigned to pkgs the import that we did in the previous expressions - in the "with", don't be afraid. It's that straightforward. + in the "with". Don't be afraid, it's that straightforward. @@ -293,15 +294,15 @@ - Out of this we managed to create a generic builder for autotools projects, - and a function mkDerivation that composes by default the - common components used in autotools projects instead of repeating them + Out of this pill we managed to create a generic builder for autotools + projects, and a function mkDerivation that composes by default + the common components used in autotools projects instead of repeating them in all the packages we would write. - We are feeling the way a Nix system grows up: it's about creating and - composing derivations with the Nix language. + We are familiarizing ourselves with the way a Nix system grows up: it's + about creating and composing derivations with the Nix language.