dependency-0.1.0.5: src/Data/Dependency/Error.hs
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
module Data.Dependency.Error ( ResolveError (..)
, DepM
) where
import Control.DeepSeq
import GHC.Generics (Generic)
import Text.PrettyPrint.ANSI.Leijen
type DepM = Either ResolveError
-- | An error that can occur during package resolution.
data ResolveError = InternalError
| NotPresent String
deriving (Show, Eq, NFData, Generic)
-- CircularDependencies String String
-- Conflict String String (Constraint Version) (Constraint Version)
instance Pretty ResolveError where
pretty InternalError = red "Error:" <+> "the" <+> squotes "dependency" <+> "package enountered an internal error. Please report this as a bug:\n" <> hang 2 "https://hub.darcs.net/vmchale/ats/issues"
pretty (NotPresent s) = red "Error:" <+> "the package" <+> squotes (text s) <+> "could not be found.\n"