packages feed

hsqml-datamodel-vinyl-0.3.0.1: hsqml-datamodel-vinyl.cabal

name:                hsqml-datamodel-vinyl
version:             0.3.0.1
synopsis:            HsQML DataModel instances for Vinyl Rec.
description:         HsQML DataModel instances for Vinyl Rec. Requires the field labels to be Typeable.
license:             BSD3
license-file:        LICENSE
author:              Marcin Mrotek
maintainer:          marcin.jan.mrotek@gmail.com
-- copyright:           
category:            Graphics
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
homepage:        https://github.com/marcinmrotek/hsqml-datamodel-vinyl
source-repository head
   type: git
   location: https://github.com/marcinmrotek/hsqml-datamodel-vinyl.git

flag devel
  description:         Development mode (-Werror)
  default:             False
  manual:              True
  
library
  exposed-modules:     Graphics.QML.DataModel.Vinyl
  build-depends:       base >=4.8 && <4.9
                     , hsqml-datamodel >= 0.2.0.1 && < 0.3
                     , exceptions >= 0.8 && < 0.9
                     , type-list >= 0.2.0.0 && < 0.3
                     , vinyl >= 0.5 && < 0.6
  hs-source-dirs:      src
  ghc-options:       -Wall
  if flag(devel)
    ghc-options:     -Werror
  default-language:    Haskell2010