-
Notifications
You must be signed in to change notification settings - Fork 4
/
aim.cabal
37 lines (31 loc) · 1.13 KB
/
aim.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
32
33
34
35
36
37
name: aim
version: 0.1.0.0
synopsis: A DSL for generating assembly code.
description: Aim is a DSL implemented in haskell to generate assembly
language. It is largely inspired by Daniel Bernstein's
qhasm. However, implementing it as a DSL would give the entire power
of Haskell at our disposal.
license: BSD3
license-file: LICENSE
author: Piyush P Kurur
maintainer: ppk@cse.iitk.ac.in
copyright:
build-type: Simple
cabal-version: >=1.9.2
bug-reports: https://github.com/piyush-kurur/aim/issues
source-repository head
type: git
location: https://github.com/piyush-kurur/raaz
library
build-depends: base >= 4.5 && < 4.7
, text >= 0.11 && < 0.12
, mtl >= 2.1 && < 2.2
, pretty >= 1.1 && < 1.2
ghc-options: -Wall
exposed-modules: Aim
, Aim.Arch.C
, Aim.Assembler.Internal
, Aim.Assembler.Internal.Language
, Aim.Assembler.Internal.Syntax
, Aim.Machine
, Aim.Monad