packages feed

pregame-0.1.4.0: pregame.cabal

name: pregame
version: 0.1.4.0
synopsis: Prelude counterpart
description: Excessive Prelude styled imports.
homepage: https://github.com/jxv/pregame
license: MIT
license-file: LICENSE
author: Joe Vargas
maintainer: https://github.com/jxv
-- copyright:           
category: Prelude
build-type: Simple
-- extra-source-files:  
cabal-version: >=1.18

source-repository head
    type: git
    location: https://github.com/jxv/pregame.git

library
  exposed-modules: Pregame
  default-extensions: NoImplicitPrelude
  -- other-modules:       
  -- other-extensions:    
  build-depends:
    base >=4.7 && <4.8,
    bytestring,
    containers,
    data-default,
    mtl,
    lens,
    parallel,
    safe,
    stm,
    transformers,
    text,
    tuple,
    vector
  hs-source-dirs: src
  default-language: Haskell2010