mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 05:56:15 +02:00
doc: document SRI hash format for outputHash
(#10230)
This commit is contained in:
parent
c152c2767a
commit
49e9efeaaa
1 changed files with 7 additions and 8 deletions
|
@ -188,9 +188,13 @@ Derivations can declare some infrequently used optional attributes.
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The `outputHashAlgo` attribute specifies the hash algorithm used to
|
The `outputHash` attribute must be a string containing the hash in either hexadecimal or "nix32" encoding, or following the format for integrity metadata as defined by [SRI](https://www.w3.org/TR/SRI/).
|
||||||
compute the hash. It can currently be `"sha1"`, `"sha256"` or
|
The "nix32" encoding is an adaptation of base-32 encoding.
|
||||||
`"sha512"`.
|
The [`convertHash`](@docroot@/language/builtins.md#builtins-convertHash) function shows how to convert between different encodings, and the [`nix-hash` command](../command-ref/nix-hash.md) has information about obtaining the hash for some contents, as well as converting to and from encodings.
|
||||||
|
|
||||||
|
The `outputHashAlgo` attribute specifies the hash algorithm used to compute the hash.
|
||||||
|
It can currently be `"sha1"`, `"sha256"`, `"sha512"`, or `null`.
|
||||||
|
`outputHashAlgo` can only be `null` when `outputHash` follows the SRI format.
|
||||||
|
|
||||||
The `outputHashMode` attribute determines how the hash is computed.
|
The `outputHashMode` attribute determines how the hash is computed.
|
||||||
It must be one of the following two values:
|
It must be one of the following two values:
|
||||||
|
@ -209,11 +213,6 @@ Derivations can declare some infrequently used optional attributes.
|
||||||
this case, the output can be anything, including a directory
|
this case, the output can be anything, including a directory
|
||||||
tree.
|
tree.
|
||||||
|
|
||||||
The `outputHash` attribute, finally, must be a string containing
|
|
||||||
the hash in either hexadecimal or base-32 notation. (See the
|
|
||||||
[`nix-hash` command](../command-ref/nix-hash.md) for information
|
|
||||||
about converting to and from base-32 notation.)
|
|
||||||
|
|
||||||
- [`__contentAddressed`]{#adv-attr-__contentAddressed}
|
- [`__contentAddressed`]{#adv-attr-__contentAddressed}
|
||||||
> **Warning**
|
> **Warning**
|
||||||
> This attribute is part of an [experimental feature](@docroot@/contributing/experimental-features.md).
|
> This attribute is part of an [experimental feature](@docroot@/contributing/experimental-features.md).
|
||||||
|
|
Loading…
Reference in a new issue