File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
hnix-store-core/src/System/Nix/Internal/Nar Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ module System.Nix.Internal.Nar.Effects
77 , narEffectsIO
88 ) where
99
10+ import Data.Kind ()
1011import qualified Data.ByteString as Bytes
1112import qualified Data.ByteString.Lazy as Bytes.Lazy
1213import qualified System.Directory as Directory
@@ -22,7 +23,7 @@ import Control.Monad.Trans.Control (MonadBaseControl)
2223import qualified Control.Exception.Lifted as Exception.Lifted
2324import qualified Control.Monad.Fail as MonadFail
2425
25- data NarEffects (m :: * -> * ) = NarEffects {
26+ data NarEffects (m :: Type -> Type ) = NarEffects {
2627 narReadFile :: FilePath -> m Bytes.Lazy. ByteString
2728 , narWriteFile :: FilePath -> Bytes.Lazy. ByteString -> m ()
2829 , narStreamFile :: FilePath -> m (Maybe Bytes. ByteString ) -> m ()
You can’t perform that action at this time.
0 commit comments