forked from berberman/uusi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uusi.cabal
84 lines (72 loc) · 1.98 KB
/
uusi.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
78
79
80
81
82
83
84
cabal-version: 2.4
name: uusi
version: 0.4.3.0
synopsis: Tweak .cabal files
description:
@uusi@ is a command-line program to tweak .cabal files.
It is used in distribution packaging.
See README for details.
homepage: https://github.com/berberman/uusi
bug-reports: https://github.com/berberman/uusi/issues
license: MIT
license-file: LICENSE
author: berberman
maintainer: berberman <[email protected]>
copyright: 2020-2023 berberman
category: Distribution
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
tested-with:
GHC ==8.6.5
|| ==8.8.3
|| ==8.10.5
|| ==9.0.1
|| ==9.6.2
source-repository head
type: git
location: https://github.com/berberman/uusi.git
common common-options
build-depends:
, base >=4.8 && <5
, Cabal ^>=3.2 || ^>=3.4 || ==3.6.3 || ^>= 3.8 || ^>= 3.10
, text
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wredundant-constraints
-fhide-source-paths -Wmissing-export-lists -Wpartial-fields
-Wmissing-deriving-strategies
default-language: Haskell2010
library
import: common-options
hs-source-dirs: src
exposed-modules:
Distribution.Uusi.Core
Distribution.Uusi.Lens
Distribution.Uusi.Types
Distribution.Uusi.Utils
executable uusi
import: common-options
hs-source-dirs: app
main-is: Main.hs
other-modules: Options
build-depends: uusi
ghc-options: -threaded -rtsopts -with-rtsopts=-N
executable gen-setup
import: common-options
hs-source-dirs: gen-setup
main-is: Main.hs
build-depends:
, directory
, filepath
ghc-options: -threaded -rtsopts -with-rtsopts=-N
test-suite uusi-tests
import: common-options
hs-source-dirs: test
build-depends:
, HUnit
, uusi
type: exitcode-stdio-1.0
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N