packages feed

th-printf-0.2.0.1: th-printf.cabal

-- Initial th-printf.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                th-printf
version:             0.2.0.1
synopsis:            Compile-time printf
description:         Quasiquoters for printf: string, bytestring, text.
homepage:            https://github.com/joelteon/th-printf
license:             MIT
license-file:        LICENSE
author:              Joel Taylor
maintainer:          me@joelt.io
category:            Text
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Text.Printf.TH
  build-depends:       base <4.7
                     , attoparsec
                     , bytestring
                     , template-haskell
                     , text
                     , transformers
  default-language:    Haskell2010

source-repository head
  type: git
  location: git://github.com/joelteon/th-printf.git

test-suite format
  type: exitcode-stdio-1.0
  main-is: format.hs
  hs-source-dirs: tests
  build-depends: base, bytestring, hspec, HUnit, QuickCheck, template-haskell, text, th-printf