forked from b3nj5m1n/xdg-ninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxdg-ninja.cabal
61 lines (52 loc) · 1.43 KB
/
xdg-ninja.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
cabal-version: 2.4
name: xdg-ninja
version: 0.2.0.1
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
-- license:
author: b3nj4m1n
maintainer: [email protected]
-- A copyright notice.
-- copyright:
-- category:
library
build-depends:
base ^>=4.15.1.0,
process ^>=1.6.13.2,
text ^>=1.2.5.0,
aeson ^>=2.0.3.0,
bytestring ^>=0.10.12.1,
uuid ^>=1.3.15,
entropy ^>=0.4.1.7,
haskeline ^>=0.8.2,
text-ansi ^>=0.1.1,
extra ^>=1.7.10,
aeson-pretty ^>=0.8.9,
text-replace ^>=0.1,
filepath ^>=1.4.2.1,
directory ^>= 1.3.6.2,
hs-source-dirs: lib
default-language: Haskell2010
exposed-modules: AddProgram, Program, Prompts, EditProgram, Output, PreviewProgram, Checks
executable add-program
main-is: add-program.hs
build-depends:
base ^>=4.15.1.0,
text ^>=1.2.5.0,
text-ansi ^>=0.1.1,
xdg-ninja,
hs-source-dirs: src
default-language: Haskell2010
executable xdgnj
main-is: xdgnj.hs
build-depends:
base ^>=4.15.1.0,
optparse-applicative ^>=0.16.1.0,
xdg-ninja,
hs-source-dirs: src
default-language: Haskell2010