packages feed

friday-juicypixels-0.1.0.2: friday-juicypixels.cabal

name:                friday-juicypixels
version:             0.1.0.2
synopsis:            Converts between the Friday and JuicyPixels image types
-- description:
homepage:            github.com/TomMD/friday-juicypixels
license:             BSD3
license-file:        LICENSE
author:              Thomas M. DuBuisson
maintainer:          tommd@galois.com
-- copyright:
homepage:            https://github.com/TomMD/friday-juicypixels
bug-reports:         https://github.com/TomMD/friday-juicypixels/issues
stability:           alpha
category:            Codec
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >= 1.18

source-repository head
  type:             git
  location:         git://github.com/TomMD/friday-juicypixels.git

library
  default-language:    Haskell2010
  exposed-modules:     Vision.Image.JuicyPixels
  -- other-modules:
  other-extensions:    ViewPatterns
  build-depends:       base            >= 4.8     &&  <  4.9
                     , friday          >= 0.2     &&  <  0.3
                     , JuicyPixels
                     , vector
  -- hs-source-dirs:
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite test
    default-language:  Haskell2010
    type:              exitcode-stdio-1.0
    main-is:           Spec.hs
    hs-source-dirs:    test
    ghc-options:       -Wall
    -- TODO: remove other-modules after stack can properly detect when to rebuild
    other-modules:     Spec

    build-depends: base
                 , friday
                 , JuicyPixels
                 , bytestring
                 , file-embed
                 , hspec
                 , friday-juicypixels