]> glassweightruler.freedombox.rocks Git - xdg-ninja.git/blob - xdgnj.cabal
Add nb and bindle (#59)
[xdg-ninja.git] / xdgnj.cabal
1 cabal-version: 2.4
2 name: xdg-ninja
3 version: 0.2.0.0
4
5 -- A short (one-line) description of the package.
6 -- synopsis:
7
8 -- A longer description of the package.
9 -- description:
10
11 -- A URL where users can report bugs.
12 -- bug-reports:
13
14 -- The license under which the package is released.
15 -- license:
16 author: b3nj4m1n
17 maintainer: b3nj4m1n@gmx.net
18
19 -- A copyright notice.
20 -- copyright:
21 -- category:
22
23 library
24 build-depends:
25 base ^>=4.15.1.0,
26 process ^>=1.6.13.2,
27 text ^>=1.2.5.0,
28 aeson ^>=1.5.6.0,
29 bytestring ^>=0.10.12.1,
30 uuid ^>=1.3.15,
31 entropy ^>=0.4.1.7,
32 haskeline ^>=0.8.2,
33 text-ansi ^>=0.1.1,
34 extra ^>=1.7.10,
35 aeson-pretty ^>=0.8.9,
36 text-replace ^>=0.1,
37 filepath ^>=1.4.2.2,
38 hs-source-dirs: lib
39 default-language: Haskell2010
40 exposed-modules: AddProgram, Program, Prompts, EditProgram, Output, PreviewProgram, Checks
41
42 executable add-program
43 main-is: add-program.hs
44 build-depends:
45 base ^>=4.15.1.0,
46 text ^>=1.2.5.0,
47 text-ansi ^>=0.1.1,
48 xdg-ninja,
49 hs-source-dirs: src
50 default-language: Haskell2010
51
52 executable xdgnj
53 main-is: xdgnj.hs
54 build-depends:
55 base ^>=4.15.1.0,
56 optparse-applicative ^>=0.17.0.0,
57 xdg-ninja,
58 hs-source-dirs: src
59 default-language: Haskell2010
60