File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,10 @@ class (MonadFile m,
75
75
76
76
traceEffect :: String -> m ()
77
77
78
+ instance (MonadFix1T t m , MonadStore m ) => MonadStore (Fix1T t m ) where
79
+ addToStore a b c d = lift $ addToStore a b c d
80
+ addTextToStore' a b c d = lift $ addTextToStore' a b c d
81
+
78
82
class Monad m => MonadIntrospect m where
79
83
recursiveSize :: a -> m Word
80
84
default recursiveSize :: (MonadTrans t , MonadIntrospect m' , m ~ t m' ) => a -> m Word
Original file line number Diff line number Diff line change @@ -52,12 +52,6 @@ import Nix.Value.Monad
52
52
import Nix.Var
53
53
54
54
55
- instance (MonadFix1T t m , MonadStore m ) => MonadStore (Fix1T t m ) where
56
- addToStore a b c d = lift $ addToStore a b c d
57
- addTextToStore' a b c d = lift $ addTextToStore' a b c d
58
-
59
- ---------------------------------------------------------------------------------
60
-
61
55
newtype StdCited m a = StdCited
62
56
{ _stdCited :: Cited (StdThunk m ) (StdCited m ) m a }
63
57
deriving
You can’t perform that action at this time.
0 commit comments