File: unlambda.cabal

package info (click to toggle)
haskell-unlambda 0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 100 kB
  • sloc: haskell: 123; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 883 bytes parent folder | download
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
name:                unlambda
version:             0.1

license:             GPL
license-file:        LICENSE
author:              Ørjan Johansen <oerjan@nvg.ntnu.no>
                     Don Stewart <http://www.cse.unsw.edu.au/~dons>
-- maintainer:          Cale

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

build-type:          Simple
Cabal-Version:       >= 1.2
tested-with:         GHC==6.8.2

executable              unlambda
   main-is:             Main.hs
   build-depends:       base>3, unix

library
   exposed-modules:     Language.Unlambda

   build-depends:       base, array, mtl

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