packages feed

identicon-style-squares-0.1.0.1: identicon-style-squares.cabal

name:                identicon-style-squares
version:             0.1.0.1
synopsis:            Squares style for the identicon package
description:         An identicon style with colored squares, similar to the
                     github default avatars. The number of square in a single
                     identicon can be configured.
homepage:            https://github.com/fgaz/identicon-styles
license:             BSD3
license-file:        LICENSE
author:              Francesco Gazzetta
maintainer:          francygazz@gmail.com
-- copyright:           
category:            Graphics
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

source-repository head
  type:     git
  location: git://github.com/fgaz/identicon-styles.git

library
  exposed-modules:     Graphics.Identicon.Styles.Squares
  -- other-modules:       
  other-extensions:    DataKinds, TypeOperators, TypeFamilies, UndecidableInstances, FlexibleContexts
  build-depends:       base >=4.7 && <4.13
                     , identicon >=0.2 && <0.3
                     , JuicyPixels >=3.2 && <3.4
                     , polyvariadic >=0.2 && <0.4
  -- hs-source-dirs:      
  default-language:    Haskell2010
  ghc-options:         -O2 -Wall

test-suite squares
  type:            exitcode-stdio-1.0
  main-is:         squares.hs
  hs-source-dirs:  tests
  build-depends:   base
                 , JuicyPixels
                 , identicon
                 , identicon-style-squares
                 , bytestring
                 , cryptohash
  default-language:    Haskell2010