forked from chrisdone/hell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhell.cabal
More file actions
39 lines (36 loc) · 1.03 KB
/
Copy pathhell.cabal
File metadata and controls
39 lines (36 loc) · 1.03 KB
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
38
39
name: hell
version: 0.0.1
synopsis: hell
description: hell
license: BSD3
license-file: LICENSE
author: Chris Done
maintainer: chrisdone@gmail.com
copyright: 2013 Chris Done
category: Shell
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Hell, Hell.Types, Hell.Prelude
hs-source-dirs: src/
build-depends: base > 4 && <5,
process,
bytestring,
haskeline,
ghc,
ghc-paths,
directory,
data-default,
unix
if impl(ghc >= 7.6)
build-depends: time
else
cpp-options: -DUSE_OLD_TIME
build-depends: old-time
ghc-options: -Wall -threaded
executable hell
main-is: Main.hs
hs-source-dirs: src/main
build-depends: base > 4 && <5,
hell
ghc-options: -Wall -threaded