packages feed

juicy-draw-0.2.0.0: juicy-draw.cabal

name:                   juicy-draw
version:                0.2.0.0
synopsis:               Draw and fill lines, rectangles and polygons
description:            This package provides 2D primitives for drawing/filling simple 2D shapes directly onto a JuicyPixels mutable image
homepage:               https://github.com/rcook/juicy-draw#readme
license:                MIT
license-file:           LICENSE
author:                 Richard Cook
maintainer:             rcook@rcook.org
copyright:              2018 Richard Cook
category:               Graphics
build-type:             Simple
cabal-version:          >= 1.10
extra-source-files:     README.md

source-repository head
    type:     git
    location: https://github.com/rcook/juicy-draw

library
  default-language:     Haskell2010
  ghc-options:          -O2 -Wall -fno-warn-missing-signatures
  hs-source-dirs:       src
  build-depends:
      JuicyPixels
    , base >= 4.7 && < 5
    , numeric-extras
    , primitive
  exposed-modules:
      Codec.Picture.Drawing
    , Codec.Picture.Geometry

executable juicy-draw-demo
  default-language:     Haskell2010
  hs-source-dirs:       app
  main-is:              Main.hs
  build-depends:
      JuicyPixels
    , base >= 4.7 && < 5
    , juicy-draw