1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-30 22:20:59 +01:00

Fix another URL in the docs

This commit is contained in:
John Ericson 2025-01-19 17:47:47 -05:00
parent e77338d875
commit fb7fc6a373
5 changed files with 6 additions and 6 deletions

View file

@ -44,7 +44,7 @@ When using public key authentication, you can avoid typing the passphrase with `
Also copy the outputs of [derivation]s included in the closure.
[derivation]: @docroot@/glossary.md#gloss-store-derivation
[derivation]: @docroot@/glossary.md#gloss-derivation
- `--use-substitutes` / `-s`

View file

@ -22,9 +22,9 @@ Rather than writing
"--with-freetype2-library=" + freetype + "/lib"
```
(where `freetype` is an [output path]), you can instead write
(where `freetype` is a [derivation expression]), you can instead write
[derivation]: @docroot@/glossary.md#gloss-derivation
[derivation expression]: @docroot@/glossary.md#gloss-derivation-expression
```nix
"--with-freetype2-library=${freetype}/lib"

View file

@ -7,7 +7,7 @@
> and subject to change.
The JSON serialization of a
[derivations](@docroot@/glossary.md#gloss-store-derivation)
[derivations](@docroot@/glossary.md#gloss-derivation)
is a JSON object with the following fields:
* `name`:

View file

@ -44,7 +44,7 @@ In other words, the same store object residing in different store could have dif
If known, the path to the [derivation] from which this store object was produced.
Otherwise `null`.
[derivation]: @docroot@/glossary.md#gloss-store-derivation
[derivation]: @docroot@/glossary.md#gloss-derivation
* `registrationTime` (optional):

View file

@ -120,7 +120,7 @@ Args::Flag contentAddressMethod(ContentAddressMethod * method)
- [`text`](@docroot@/store/store-object/content-address.md#method-text):
Like `flat`, but used for
[derivations](@docroot@/glossary.md#store-derivation) serialized in store object and
[derivations](@docroot@/glossary.md#gloss-derivation) serialized in store object and
[`builtins.toFile`](@docroot@/language/builtins.html#builtins-toFile).
For advanced use-cases only;
for regular usage prefer `nar` and `flat`.