packages feed

flay-0.2: flay.cabal

name: flay
version: 0.2
author: Renzo Carbonara
maintainer: renλren!zone
copyright: Renzo Carbonara 2017
license: BSD3
license-file: LICENSE.txt
extra-source-files: README.md CHANGELOG.md pkg.nix shell.nix default.nix release.nix
category: Data, Generics
build-type: Simple
cabal-version: >=1.18
synopsis: Work generically on your datatype without knowing its shape nor its contents.
description:
  Work generically on your datatype without knowing its shape nor its contents using
  a principlied approach.
homepage: https://github.com/k0001/flay
bug-reports: https://github.com/k0001/flay/issues
source-repository head
  type: git
  location: https://github.com/k0001/flay

library
  hs-source-dirs: src
  default-language: Haskell2010
  ghcjs-options: -Wall -O3
  ghc-options: -Wall -O2
  exposed-modules: Flay
  build-depends:
    base >=4.9 && <5.0,
    constraints,
    ghc-prim

test-suite tests
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  hs-source-dirs: tests
  main-is: Main.hs
  build-depends:
    base,
    flay,
    tasty,
    tasty-quickcheck