-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrlang.cabal
64 lines (59 loc) · 1.34 KB
/
rlang.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
-- This file has been generated from package.yaml by hpack version 0.18.1.
--
-- see: https://github.com/sol/hpack
name: rlang
version: 0.0.0
synopsis: A new Haskeleton package.
description: rlang is a new Haskeleton package.
category: Other
homepage: https://github.com/robinvd/rlang#readme
bug-reports: https://github.com/robinvd/rlang/issues
maintainer: Robin
license: MIT
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
package.yaml
source-repository head
type: git
location: https://github.com/robinvd/rlang
library
hs-source-dirs:
library
ghc-options: -Wall -Wno-unused-do-bind -Wno-missing-signatures
build-depends:
base
, parsec
, containers
, mtl
, text
, bytestring
, llvm-hs-pure
, llvm-hs
, llvm-hs-pretty
, pretty-simple
exposed-modules:
Rlang.Checker
Rlang.Codegen
Rlang.Core
Rlang.Emit
Rlang.Jit
Rlang.Lexer
Rlang.Parsing
Rlang.Run
Rlang.Scan
Rlang.Syntax
Rlang.MapStack
other-modules:
Paths_rlang
default-language: Haskell2010
executable rlang
main-is: Main.hs
hs-source-dirs:
executable
ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
build-depends:
base
, rlang
, text
default-language: Haskell2010