packages feed

acme-hq9plus-0.1: acme-hq9plus.cabal

name:               acme-hq9plus
version:            0.1
synopsis:           An embedded DSL for the HQ9+ programming language
homepage:           http://github.com/joeyadams/haskell-acme-hq9plus
license:            PublicDomain
author:             Joey Adams
maintainer:         joeyadams3.14159@gmail.com
category:           Acme
build-type:         Simple
cabal-version:      >=1.8

source-repository head
    type:       git
    location:   git://github.com/joeyadams/haskell-acme-hq9plus.git

library
    exposed-modules:
        Acme.HQ9Plus

    build-depends: base >= 4.5 && < 5
                    -- base 4.5 is needed because (HQ a) has a Num instance,
                    -- but no Eq or Show instances.

    other-extensions:
        FlexibleInstances
        GADTs