packages feed

bitcoin-api-extra-0.9.1: bitcoin-api-extra.cabal

name: bitcoin-api-extra
category: Network, Finance
version: 0.9.1
license: MIT
license-file: LICENSE
copyright: (c) 2015 Leon Mergen
author: Leon Mergen
maintainer: leon@solatis.com
homepage: http://www.leonmergen.com/opensource.html
bug-reports: http://github.com/solatis/haskell-bitcoin-api-extra/issues
stability: experimental
synopsis: Higher level constructs on top of the bitcoin-api package
description:
            Where `bitcoin-api` focusses solely on interacting with the Bitcoin Core client,
            this library attempts to provide higher level constructs on top of that API.

            It provides a collection of algorithms and useful interfaces for communicating
            with Bitcoin.
                      
build-type: Simple
data-files: LICENSE, README.md
cabal-version: >= 1.10
tested-with: GHC == 7.6, GHC == 7.8, GHC == 7.10

library
  hs-source-dirs:      src
  ghc-options:         -Wall -ferror-spans
  default-language:    Haskell2010

  exposed-modules:     Control.Bitcoin.Api.Transaction

  build-depends:       base                     >= 4.3          && < 5
                     , text
                     , bytestring
                     , binary
                     , lens

                     , conduit
                     , transformers
                     , stm
                     , stm-chans
                     , stm-conduit

                     , bitcoin-block
                     , bitcoin-tx
                     , bitcoin-api

test-suite test-suite
  type:                exitcode-stdio-1.0
  ghc-options:         -Wall -ferror-spans -threaded -auto-all -caf-all -fno-warn-type-defaults
  default-language:    Haskell2010
  hs-source-dirs:      test
  main-is:             Main.hs

  other-modules:       Control.Bitcoin.Api.TestUtil
                       Control.Bitcoin.Api.TransactionSpec
                       Spec
                       Main

  build-depends:       base                     >= 4.3          && < 5
                     , bytestring
                     , text

                     , http-client
                     , wreq                     
                     , lens
                     , conduit
                     
                     , hspec

                     , bitcoin-api
                     , bitcoin-tx
                     , bitcoin-api-extra

source-repository head
  type: git
  location: git://github.com/solatis/haskell-bitcoin-api-extra.git
  branch: master