StoreEffects: Add pathFromHashPart.

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

View File

@ -107,4 +107,6 @@ data StoreEffects rootedPath validPath m =
derivationOutputs :: !(validPath -> m (HashSet Path))
, -- | Get the output names of the derivation at a 'Path'.
derivationOutputNames :: !(validPath -> m (HashSet Text))
, -- | Get a full 'Path' corresponding to a given 'Digest'.
pathFromHashPart :: !(Digest PathHashAlgo -> m Path)
}