packages feed

abcnotation-1.6.2: abcnotation.cabal

name:                   abcnotation
version:                1.6.2
synopsis:               Haskell representation and parser for ABC notation.
author:                 Hans Hoglund
maintainer:             Hans Hoglund
license:                BSD3
license-file:           COPYING
category:               Music
tested-with:            GHC
build-type:             Simple
cabal-version:          >= 1.10

description:
    This package contains a Haskell representation and parser for ABC notation.
    .
    ABC notation is a text-based music notation system designed to be comprehensible by both people and
    computers. For more information see <http://abcnotation.com>.
    .
    Based on the 2.1 standard.

source-repository head
  type:                 git
  location:             git://github.com/music-suite/abcnotation.git

library
    exposed-modules:    Music.Abc
                        Music.Abc.Parser
    build-depends:      base                >= 4 && < 5,
                        semigroups          >= 0.13.0.1 && < 1,
                        network,
                        prettify,
                        parsec,
                        -- debug
                        process
    hs-source-dirs:     src
    default-language:   Haskell2010