StoreEffects: Add derivationOutputNames.

This commit is contained in:
Shea Levy 2018-04-28 03:41:48 -07:00
parent c7d367f54c
commit 49c1017f0e
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27

View File

@ -103,6 +103,8 @@ data StoreEffects rootedPath validPath m =
!(HashSet Path -> m (HashMap Path SubstitutablePathInfo))
, -- | Get the currently valid derivers of a 'Path'.
validDerivers :: !(Path -> m (HashSet Path))
, -- | Get the outputs of the derivation at 'Path'.
, -- | Get the outputs of the derivation at a 'Path'.
derivationOutputs :: !(validPath -> m (HashSet Path))
, -- | Get the output names of the derivation at a 'Path'.
derivationOutputNames :: !(validPath -> m (HashSet Text))
}