File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import Control.Monad.Trans.Class
3131import Control.Monad.Trans.Except
3232import Data.Align
3333import Data.Functor.Identity
34- import qualified Data.HashMap.Lazy as M
34+ import qualified Data.HashMap.Lazy as HashMap.Lazy
3535import Data.These
3636import Nix.Atoms
3737import Nix.Frames
@@ -73,7 +73,7 @@ alignEq :: (Align f, Traversable f) => (a -> b -> Bool) -> f a -> f b -> Bool
7373alignEq eq fa fb = runIdentity $ alignEqM (\ x y -> Identity (eq x y)) fa fb
7474
7575isDerivationM :: Monad m => (t -> m (Maybe NixString )) -> AttrSet t -> m Bool
76- isDerivationM f m = case M .lookup " type" m of
76+ isDerivationM f m = case HashMap.Lazy .lookup " type" m of
7777 Nothing -> pure False
7878 Just t -> do
7979 mres <- f t
@@ -127,7 +127,7 @@ compareAttrSetsM f eq lm rm = do
127127 isDerivationM f lm >>= \ case
128128 True -> isDerivationM f rm >>= \ case
129129 True
130- | Just lp <- M. lookup " outPath" lm, Just rp <- M .lookup " outPath" rm -> eq
130+ | Just lp <- HashMap.Lazy. lookup " outPath" lm, Just rp <- HashMap.Lazy .lookup " outPath" rm -> eq
131131 lp
132132 rp
133133 _ -> compareAttrs
You can’t perform that action at this time.
0 commit comments