We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3576273 commit da9b46cCopy full SHA for da9b46c
hnix-store-core/src/System/Nix/DerivedPath.hs
@@ -25,12 +25,17 @@ import qualified System.Nix.StorePath
25
26
data OutputsSpec =
27
OutputsSpec_All
28
+ -- ^ Wildcard spec (!*) meaning all outputs
29
| OutputsSpec_Names (Set OutputName)
30
+ -- ^ Set of specific outputs
31
deriving (Eq, Generic, Ord, Show)
32
33
data DerivedPath =
34
DerivedPath_Opaque StorePath
35
+ -- ^ Fully evaluated store path that can't be built
36
+ -- but can be fetched
37
| DerivedPath_Built StorePath OutputsSpec
38
+ -- ^ Derivation path and the outputs built from it
39
40
41
data ParseOutputsError =
0 commit comments