This repository has been archived by the owner on Aug 25, 2023. It is now read-only.
forked from phadej/changelog-d
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog-d.cabal
77 lines (68 loc) · 1.99 KB
/
changelog-d.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
cabal-version: 2.2
name: changelog-d
version: 0.1
synopsis: Concatenate changelog entries into a single one.
category: Development
description:
Concate changelog entries into a single file.
.
Short usage guide:
.
license: GPL-3.0-or-later
license-file: LICENSE
author: Oleg Grenrus <[email protected]>
maintainer: Francesco Gazzetta <[email protected]>
tested-with: GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.2.5 || == 9.4.3
source-repository head
type: git
location: https://github.com/phadej/changelog-d.git
library changelog-d-internal
default-language: Haskell2010
hs-source-dirs: src
-- GHC boot libraries
build-depends:
, base ^>=4.11.1.0 || ^>=4.12.0.0 || ^>=4.13.0.0 || ^>=4.14.0.0 || ^>=4.16.1.0 || ^>=4.17.0.0
, bytestring ^>=0.10.8.2 || ^>=0.11.3.0
, Cabal-syntax^>=3.8.1.0
, containers ^>=0.5.11.0 || ^>=0.6.0.1
, directory ^>=1.3.1.5
, filepath ^>=1.4.2
, mtl ^>=2.2.2 || ^>=2.3.1
, parsec ^>=3.1.13.0
, pretty ^>=1.1.3.6
-- extra dependencies
build-depends:
, cabal-install-parsers ^>=0.3 || ^>=0.4.5 || ^>=0.5 || ^>=0.6
, generic-lens-lite ^>=0.1
, regex-applicative ^>=0.3.3.1
-- changelog-d: expand src
exposed-modules: ChangelogD
other-extensions:
DataKinds
DeriveAnyClass
DeriveFunctor
DerivingStrategies
ExistentialQuantification
FlexibleContexts
GeneralizedNewtypeDeriving
OverloadedStrings
RankNTypes
ScopedTypeVariables
TypeApplications
executable changelog-d
default-language: Haskell2010
hs-source-dirs: cli
main-is: Main.hs
other-modules: Paths_changelog_d
autogen-modules: Paths_changelog_d
-- dependencies in library
build-depends:
, base
, bytestring
, Cabal-syntax
, changelog-d-internal
, directory
, filepath
-- extra dependencies
build-depends:
optparse-applicative >=0.14.3.0 && <0.16 || >=0.17.0.0 && <0.18