StoreEffects: Add derivationOutputs

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

View File

@ -103,4 +103,6 @@ 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'.
derivationOutputs :: !(validPath -> m (HashSet Path))
}