packages feed

prologue-1.0.7: prologue.cabal

name: prologue
version: 1.0.7
cabal-version: >=1.10
build-type: Simple
license: Apache-2.0
license-file: LICENSE
copyright: Copyright (C) 2014 Wojciech Danilo
maintainer: Wojciech Danilo <wojciech.danilo@gmail.com>
stability: experimental
homepage: https://github.com/wdanilo/prologue
bug-reports: https://github.com/wdanilo/prologue/issues
synopsis: Better, more general Prelude exporting common utilities.
description:
    Replacement for the Haskell's Prelude, exposing more commonly used functions and patching old GHC ones to behave in the newest GHC's way.
category: control
author: Wojciech Danilo

source-repository head
    type: git
    location: git://github.com/wdanilo/prologue.git

library
    exposed-modules:
        Prologue
        Data.Typeable.Proxy.Abbr
        Data.Text.Class
        Data.String.Class
        Data.Default.Instances.Missing
        Data.Binary.Instances.Missing
    build-depends:
        base >=4.6 && <4.9,
        bifunctors >=5.1,
        binary >=0.7.5.0,
        cond -any,
        container >=1.0,
        convert >=1.0,
        data-default >=0.5.3,
        data-layer >=1.0.1,
        errors >=2.0.1,
        lens >=4.13,
        lens-utils >=1.0,
        mtl >=2.2.1,
        pretty-show >=1.6.9,
        transformers >=0.4.2.0,
        transformers-base >=0.4.4,
        text >=1.2.2.0,
        string-qq >=0.0.2,
        vector >=0.11.0.0,
        tuple -any,
        functor-utils >=1.0,
        impossible -any,
        typelevel >=1.0.2
    default-language: Haskell2010
    default-extensions: ConstraintKinds DataKinds DefaultSignatures
                        DeriveDataTypeable DeriveFoldable DeriveFunctor DeriveGeneric
                        DeriveTraversable DoAndIfThenElse EmptyDataDecls FlexibleContexts
                        FlexibleInstances GeneralizedNewtypeDeriving InstanceSigs
                        LambdaCase MultiParamTypeClasses NoImplicitPrelude
                        OverloadedStrings StandaloneDeriving TemplateHaskell TupleSections
                        TypeOperators ViewPatterns
    hs-source-dirs: src
    ghc-options: -Wall -O2