Skip to content

Commit 49c1017

Browse files
committed
StoreEffects: Add derivationOutputNames.
1 parent c7d367f commit 49c1017

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

hnix-store-core/src/System/Nix/Store.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ data StoreEffects rootedPath validPath m =
103103
!(HashSet Path -> m (HashMap Path SubstitutablePathInfo))
104104
, -- | Get the currently valid derivers of a 'Path'.
105105
validDerivers :: !(Path -> m (HashSet Path))
106-
, -- | Get the outputs of the derivation at 'Path'.
106+
, -- | Get the outputs of the derivation at a 'Path'.
107107
derivationOutputs :: !(validPath -> m (HashSet Path))
108+
, -- | Get the output names of the derivation at a 'Path'.
109+
derivationOutputNames :: !(validPath -> m (HashSet Text))
108110
}

0 commit comments

Comments
 (0)