packages feed

brainfuck-0.1.0.2: brainfuck.cabal

name:                brainfuck
version:             0.1.0.2
license:             GPL
license-file:        LICENSE
author:              Jason Dagit <dagit@codersbase.com>
maintainer:          Nikolay Amiantov <ab@fmap.me>

stability:           Stable
category:            Compilers/Interpreters
synopsis:            Brainfuck interpreter
description:         This is an interpreter of the brainf*ck language,
                     written in the pure, lazy, functional language Haskell.

build-type:          Simple
cabal-version:       >= 1.6
tested-with:         GHC==7.10.1

source-repository head
  type:     git
  location: https://github.com/abbradar/brainfuck

executable              bf
   main-is:             Main.hs
   build-depends:       base>3, unix, array, mtl

library
   exposed-modules:     Language.Brainfuck, Language.Brainfuck.Examples

   build-depends:       base <4.9, array, mtl

   ghc-options:         -Wall
   ghc-prof-options:    -prof -auto-all