mirror of
https://codeberg.org/mhwombat/nix-book.git
synced 2025-12-29 09:45:07 +08:00
smart quotes
This commit is contained in:
parent
b410334dd8
commit
dc009738d2
1 changed files with 5 additions and 5 deletions
|
|
@ -39,11 +39,11 @@ presented in the previous section, most of it should look familiar.
|
|||
....
|
||||
|
||||
This `flake.nix` doesn’t have a `devShells` section, because development
|
||||
on the current version doesn’t require anything beyond the ``bare
|
||||
bones'' linux commands. Later we will add a feature that requires
|
||||
on the current version doesn’t require anything beyond
|
||||
the "`bare bones`" linux commands. Later we will add a feature that requires
|
||||
additional development tools.
|
||||
|
||||
Now let’s look at the section I labeled ```SOME UNFAMILIAR STUFF`'' and
|
||||
Now let’s look at the section I labeled `SOME UNFAMILIAR STUFF` and
|
||||
see what it does.
|
||||
|
||||
....
|
||||
|
|
@ -83,8 +83,8 @@ unpacked.
|
|||
The `buildPhase` variable is a sequence of Linux commands to build the
|
||||
package. Typically, building a package requires compiling the source
|
||||
code. However, that’s not required for a simple shell script. So
|
||||
`buildPhase` consists of a single command, `:`, which is a no-op or ``do
|
||||
nothing'' command.
|
||||
`buildPhase` consists of a single command, `:`,
|
||||
which is a no-op or "`do nothing`" command.
|
||||
|
||||
The `installPhase` variable is a sequence of Linux commands that will do
|
||||
the actual installation. In this case, we create a directory (3) for the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue