cfipu-1.1.0.4: cfipu.cabal
name: cfipu
-- Don't forget to bump the tag and CHANGELOG placeholder too.
version: 1.1.0.4
cabal-version: >= 1.18
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: Copyright (C) 2010 Byron James Johnson
author: Byron James Johnson
maintainer: ByronJohnsonFP@gmail.com
category: Compilers/Interpreters
homepage: https://github.com/bairyn/cfipu
bug-reports: https://github.com/bairyn/cfipu/issues
tested-with: GHC == 7.8.3
extra-source-files:
-- The extra-doc-files property requires cabal-version >= 1.18.
extra-doc-files:
README.md
,CHANGELOG.md
synopsis: cfipu processor for toy brainfuck-like language
description:
A cfipu processor that can interpret and process cfipu source.
.
cfipu is a toy brainfuck-like language.
executable cfipu
default-language: Haskell2010
buildable: True
build-tools: ghc >= 7.0.0
hs-source-dirs: src
main-is: Cfipu.hs
ghc-options: -Wall -O2 -threaded
default-extensions:
--,GADTs
--,TemplateHaskell
--,DeriveDataTypeable
other-extensions:
ScopedTypeVariables
,FlexibleContexts
-- TODO: add version constraints.
build-depends:
base >= 4.2.0.0 && < 5
,mtl >= 2.0.0.0
,containers >= 0.3.0.0
,bytestring >= 0.9.1.5
,dequeue >= 0.1.5
,data-default >= 0.2
other-modules:
Data.Memory
source-repository head
type: git
location: git@github.com:bairyn/cfipu.git
source-repository this
type: git
location: git@github.com:bairyn/cfipu.git
tag: v1.1.0.4