mirror of
https://github.com/NixOS/nix.git
synced 2024-11-25 00:02:25 +00:00
Small tweak
This commit is contained in:
parent
5eeae83578
commit
192616176d
@ -21,7 +21,7 @@ A derivation consists of:
|
|||||||
|
|
||||||
- A set of *outputs*, consisting of names and possibly other data
|
- A set of *outputs*, consisting of names and possibly other data
|
||||||
|
|
||||||
- A set of *inputs*, a set of deriving paths
|
- A set of *inputs*, a set of [deriving paths](#deriving-path)
|
||||||
|
|
||||||
- Everything needed for an `execve` system call:
|
- Everything needed for an `execve` system call:
|
||||||
1. Path to executable
|
1. Path to executable
|
||||||
@ -74,8 +74,8 @@ type OutputName = String
|
|||||||
data DerivingPath
|
data DerivingPath
|
||||||
= ConstantPath { path : StorePath }
|
= ConstantPath { path : StorePath }
|
||||||
| Output {
|
| Output {
|
||||||
drv : StorePath,
|
drvPath : StorePath,
|
||||||
output : OutputName,
|
output : OutputName,
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -141,7 +141,7 @@ type OutputName = String
|
|||||||
data DerivingPath
|
data DerivingPath
|
||||||
= ConstantPath { storeObj : StorePath }
|
= ConstantPath { storeObj : StorePath }
|
||||||
| Output {
|
| Output {
|
||||||
drv : DerivingPath, -- changed
|
drv : DerivingPath, -- Note: changed
|
||||||
output : OutputName,
|
output : OutputName,
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user