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 c7d367f commit 49c1017Copy full SHA for 49c1017
hnix-store-core/src/System/Nix/Store.hs
@@ -103,6 +103,8 @@ data StoreEffects rootedPath validPath m =
103
!(HashSet Path -> m (HashMap Path SubstitutablePathInfo))
104
, -- | Get the currently valid derivers of a 'Path'.
105
validDerivers :: !(Path -> m (HashSet Path))
106
- , -- | Get the outputs of the derivation at 'Path'.
+ , -- | Get the outputs of the derivation at a 'Path'.
107
derivationOutputs :: !(validPath -> m (HashSet Path))
108
+ , -- | Get the output names of the derivation at a 'Path'.
109
+ derivationOutputNames :: !(validPath -> m (HashSet Text))
110
}
0 commit comments