-
Notifications
You must be signed in to change notification settings - Fork 1
/
MicroCabal.cabal
48 lines (45 loc) · 1.79 KB
/
MicroCabal.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
cabal-version: 3.0
name: MicroCabal
version: 0.4.1.0
synopsis: A partial Cabal replacement
license: Apache-2.0
license-file: LICENSE
copyright: 2024 Lennart Augustsson
category: language
author: [email protected]
maintainer: [email protected]
stability: experimental
description: A portable subset of the Cabal functionality.
build-type: Simple
extra-source-files:
LICENSE
Makefile
README.md
source-repository head
type: git
location: https://github.com/augustss/MicroCabal
executable mcabal
default-language: Haskell98
hs-source-dirs: src
ghc-options: -Wall -Wno-unrecognised-warning-flags -Wno-x-partial -main-is MicroCabal.Main
main-is: MicroCabal/Main.hs
default-extensions: MultiParamTypeClasses ScopedTypeVariables PatternGuards
other-modules: MicroCabal.Backend.GHC
MicroCabal.Backend.MHS
MicroCabal.Cabal
MicroCabal.Env
MicroCabal.Glob
MicroCabal.Macros
MicroCabal.Normalize
MicroCabal.Parse
MicroCabal.Regex
MicroCabal.StackageList
MicroCabal.Unix
MicroCabal.YAML
Text.ParserComb
if impl(ghc)
build-depends: base >= 4.10 && < 4.25,
directory >= 1.3 && < 1.6,
process >= 1.6 && < 1.9,
if impl(mhs)
build-depends: base >= 0.1 && < 10.0,