-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
58 lines (53 loc) · 968 Bytes
/
package.yaml
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
name: jreduce
description: |
A tool for reducing Java Bytecode files
version: 0.1.0
author: Christian Gram Kalhauge
maintainer: Christian Gram Kalhauge <[email protected]>
synopsis: A tool for reducing Java Bytecode files
license: BSD3
license-file: LICENSE
category: Language, Java, JVM
github: ucla-pls/jvmhs
dependencies:
- base >= 4.10 && < 4.15
- reduce
- reduce-util
- jvmhs
- optparse-applicative
- mtl
- transformers
- unordered-containers
- lens
- lens-action
- filepath
- directory
- unliftio
- zip-archive
- bytestring
- deepseq
- containers
- text
- cassava
- dirtree
- time
- jvm-binary
- vector
- aeson
library:
source-dirs: src
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
executables:
jreduce:
source-dirs: app
main: Main.hs
dependencies:
- jreduce
ghc-options:
- -O2
- -threaded