Skip to content

Commit

Permalink
Update from Hackage at 2015-06-04T14:39:17+0000
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Jun 4, 2015
1 parent 32ea5ac commit 25f7b30
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions flow/1.0.1/flow.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: flow
version: 1.0.1
cabal-version: >=1.8
build-type: Simple
license: MIT
license-file: LICENSE.md
copyright: 2015 Taylor Fausak <taylor@fausak.me>
maintainer: Taylor Fausak <taylor@fausak.me>
homepage: http://taylor.fausak.me/flow/
bug-reports: https://github.com/tfausak/flow/issues
synopsis: Write more understandable Haskell.
description:
Flow is a package that provides functions and operators for writing more
understandable Haskell. It's an alternative to some common idioms like
@($)@ for function application and @(.)@ for function composition.
.
For more information, please visit
<http://taylor.fausak.me/flow/ the official site>.
category: Combinators, Functions, Utility
author: Taylor Fausak <taylor@fausak.me>
extra-source-files:
CHANGELOG.md
README.md

source-repository head
type: git
location: https://github.com/tfausak/flow

library
exposed-modules:
Flow
build-depends:
base <5
ghc-options: -Wall

test-suite test
type: exitcode-stdio-1.0
main-is: FlowTest.hs
build-depends:
base -any,
flow -any,
doctest >= 0.9 && <0.11,
QuickCheck ==2.*,
template-haskell ==2.*
ghc-options: -Wall

benchmark bench
type: exitcode-stdio-1.0
main-is: FlowBench.hs
build-depends:
base -any,
flow -any,
criterion ==1.*
ghc-options: -Wall

0 comments on commit 25f7b30

Please sign in to comment.