This repository has been archived by the owner on May 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
marble-os.cabal
executable file
·62 lines (56 loc) · 1.73 KB
/
marble-os.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
cabal-version: 3.0
name: marble-os
version: 0.1.4.0
description: Run things at your own pace
license: MIT
license-file: LICENSE
author: Joaquin Florius
maintainer: [email protected]
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
common common-options
default-language: Haskell2010
ghc-options: -Wall
default-extensions: OverloadedStrings
build-depends: base >=4.13 && <4.14
library
import: common-options
hs-source-dirs: src
exposed-modules: App
, Duration
, Args
, Mbl
, Configuration
other-modules: Paths_marble_os
build-depends: text
, time
, optparse-applicative
, attoparsec
, bytestring
, daemons
, cereal
, data-default
, pipes
, transformers
, containers
, microlens
, random
, editor-open
executable marble
import: common-options
hs-source-dirs: exe
main-is: Main.hs
build-depends: marble-os
ghc-options: -threaded
-rtsopts
-with-rtsopts=-N
test-suite marble-os-test
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: AppSpec
, DurationSpec
, MblSpec
build-depends: marble-os
, hspec