Cabal-syntax-3.13.0.0: A library for working with .cabal files
Safe HaskellSafe-Inferred
LanguageHaskell2010

Distribution.Types.ExeDependency

Synopsis

Documentation

data ExeDependency Source #

Describes a dependency on an executable from a package

Instances

Instances details
Parsec ExeDependency Source #

Examples

>>> simpleParsec "happy:happy" :: Maybe ExeDependency
Just (ExeDependency (PackageName "happy") (UnqualComponentName "happy") (OrLaterVersion (mkVersion [0])))
>>> simpleParsec "happy:happy >= 1.19.12" :: Maybe ExeDependency
Just (ExeDependency (PackageName "happy") (UnqualComponentName "happy") (OrLaterVersion (mkVersion [1,19,12])))
>>> simpleParsec "happy:happy>=1.19.12" :: Maybe ExeDependency
Just (ExeDependency (PackageName "happy") (UnqualComponentName "happy") (OrLaterVersion (mkVersion [1,19,12])))
>>> simpleParsec "happy : happy >= 1.19.12" :: Maybe ExeDependency
Nothing
>>> simpleParsec "happy: happy >= 1.19.12" :: Maybe ExeDependency
Nothing
>>> simpleParsec "happy :happy >= 1.19.12" :: Maybe ExeDependency
Nothing
Instance details

Defined in Distribution.Types.ExeDependency

Pretty ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

Structured ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

Data ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ExeDependency -> c ExeDependency

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ExeDependency

toConstr :: ExeDependency -> Constr

dataTypeOf :: ExeDependency -> DataType

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ExeDependency)

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ExeDependency)

gmapT :: (forall b. Data b => b -> b) -> ExeDependency -> ExeDependency

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ExeDependency -> r

gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ExeDependency -> r

gmapQ :: (forall d. Data d => d -> u) -> ExeDependency -> [u]

gmapQi :: Int -> (forall d. Data d => d -> u) -> ExeDependency -> u

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ExeDependency -> m ExeDependency

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ExeDependency -> m ExeDependency

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ExeDependency -> m ExeDependency

Generic ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

Associated Types

type Rep ExeDependency :: Type -> Type

Read ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

Show ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

Binary ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

Methods

put :: ExeDependency -> Put #

get :: Get ExeDependency #

putList :: [ExeDependency] -> Put #

NFData ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

Methods

rnf :: ExeDependency -> () #

Eq ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

Ord ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

type Rep ExeDependency Source # 
Instance details

Defined in Distribution.Types.ExeDependency

type Rep ExeDependency = D1 ('MetaData "ExeDependency" "Distribution.Types.ExeDependency" "Cabal-syntax-3.13.0.0-inplace" 'False) (C1 ('MetaCons "ExeDependency" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 PackageName) :*: (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 UnqualComponentName) :*: S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 VersionRange))))