-
Notifications
You must be signed in to change notification settings - Fork 4
/
brainfuck.cabal
31 lines (26 loc) · 1023 Bytes
/
brainfuck.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: brainfuck
version: 0.1.0.4
license: GPL
license-file: LICENSE
author: Jason Dagit <[email protected]>
maintainer: Nikolay Amiantov <[email protected]>
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.10
tested-with: GHC==8.0.1
source-repository head
type: git
location: https://github.com/abbradar/brainfuck
executable bf
main-is: Main.hs
default-language: Haskell2010
build-depends: base>3 && <5, unix, array, mtl, brainfuck
library
exposed-modules: Language.Brainfuck, Language.Brainfuck.Examples
default-language: Haskell2010
build-depends: base>3 && <5, array, mtl
ghc-options: -Wall