-
Notifications
You must be signed in to change notification settings - Fork 0
/
hoyo.cabal
121 lines (109 loc) · 2.66 KB
/
hoyo.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
cabal-version: 3.0
name: hoyo
version: 0.6.0.0
license: BSD-3-Clause
license-file: LICENSE
maintainer: [email protected]
author: Frederick Pringle
synopsis: Bookmark directories for cd
description:
hoyo is a command-line utility enabling easy bookmarking
of directory for quick cd-like behaviour.
See the [github readme](https://github.com/fpringle/hoyo#readme)
for more information.
homepage: https://github.com/fpringle/hoyo
category: System
build-type: Simple
extra-doc-files: CHANGELOG.md README.md
source-repository head
type: git
location: git://github.com/fpringle/hoyo.git
branch: main
source-repository this
type: git
location: git://github.com/fpringle/hoyo.git
tag: v0.6.0.0
common deps
build-depends:
base >=4 && <5,
tomland,
microlens,
microlens-th,
text,
mtl,
transformers,
directory,
filepath,
time,
package-version,
optparse-applicative,
unordered-containers,
ansi-terminal,
json,
template-haskell,
pager,
exceptions
common warnings
ghc-options: -Wall
library
import:
, deps
, warnings
exposed-modules:
Hoyo
Hoyo.Env
Hoyo.Config
Hoyo.Command
Hoyo.Bookmark
Hoyo.Utils
Hoyo.CLI.Parse
Hoyo.CLI.Complete
Hoyo.Internal.Types
Hoyo.Internal.Version
hs-source-dirs: src
-- other-modules:
default-language: Haskell2010
default-extensions:
OverloadedStrings
GeneralizedNewtypeDeriving
LambdaCase
FlexibleContexts
TupleSections
ghc-options: -Wall -Wno-duplicate-exports -Wno-unused-do-bind
executable hoyo-cli
import:
, deps
, warnings
main-is: Main.hs
other-modules:
hs-source-dirs: exe
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4 && <5,
hoyo
default-extensions: OverloadedStrings LambdaCase
test-suite hoyo-test
import:
, deps
, warnings
main-is: Main.hs
other-modules: Hoyo.Test.Gen
Hoyo.Test.Bookmark
Hoyo.Test.Utils
Hoyo.Test.Hoyo
Hoyo.Test.Env
Hoyo.Test.CLI.Parse
-- other-extensions:
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4 && <5,
-- HUnit >=1.6 && <1.7,
QuickCheck,
quickcheck-instances,
temporary,
hoyo
type: exitcode-stdio-1.0
default-extensions: OverloadedStrings