Fix #242, ghcPkgList(Ex) on NixOS

This commit is contained in:
Daniel Gröber
2014-05-05 00:28:03 +02:00
parent ea427d60ba
commit 635830b527
3 changed files with 88 additions and 30 deletions

View File

@@ -0,0 +1,16 @@
{-# LANGUAGE RoleAnnotations #-}
module Language.Haskell.GhcMod.Monad where
import DynFlags (HasDynFlags)
import Control.Monad.IO.Class (MonadIO)
import Control.Applicative (Applicative)
data GhcMod a
type role GhcMod nominal
instance Functor GhcMod
instance Applicative GhcMod
instance Monad GhcMod
instance HasDynFlags GhcMod
instance MonadIO GhcMod