-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaid-build.cabal
46 lines (42 loc) · 1.1 KB
/
maid-build.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
cabal-version: 3.0
name: maid-build
version: 0.1.5
synopsis: Markdown-based task runner
description:
Maid is a task runner like make which uses readable markdown files for its commands
homepage: https://github.com/rniii/maid
bug-reports: https://github.com/rniii/maid/issues
license: Apache-2.0
license-file: LICENSE
author: rini
maintainer: rini <[email protected]>
copyright: (c) 2024 rini
category: Development
stability: experimental
source-repository head
type: git
location: https://github.com/rniii/maid.git
common base
ghc-options: -Wall -Wno-name-shadowing
default-language: Haskell2010
build-depends: base >= 4.7 && <5
library
import: base
hs-source-dirs: src
exposed-modules:
Maid,
Maid.Parser,
build-depends:
ansi-terminal ^>= 1.1,
directory ^>= 1.3,
filepath ^>= 1.5,
process ^>= 1.6,
bytestring ^>= 0.11,
text ^>= 2.0,
mtl ^>= 2.2,
temporary ^>= 1.3,
executable maid
import: base
main-is: Main.hs
hs-source-dirs: app
build-depends: maid-build