Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

No `MonadFix ((,) a)`?
I feel like I must be missing something obvious but I couldn't find any information about this: why isn't there a `MonadFix ((,) a)` instance? There is one for `Writer a` in `transformers`, which seems lawful to me. ```haskell instance Monoid a => MonadFix ((,) a) where mfix f = let (a, b) = f b in (a, b) ```
issue