-
Notifications
You must be signed in to change notification settings - Fork 0
/
dhalpm.cabal
113 lines (96 loc) · 2.47 KB
/
dhalpm.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
cabal-version: 3.0
name: dhalpm
version: 0.1.0.0
description:
Please see the README on Github at <https://github.com/mmhat/dhalpm#readme>
homepage: https://github.com/mmhat/dhalpm#readme
bug-reports: https://github.com/mmhat/dhalpm/issues
author: Dominik Peteler
maintainer: [email protected]
copyright: 2022 Dominik Peteler
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
ChangeLog.md
LICENSE
README.md
common language
default-extensions:
NoImplicitPrelude
DeriveGeneric
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
OverloadedStrings
StandaloneDeriving
StrictData
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
default-language: Haskell2010
common rts
ghc-options: -threaded -rtsopts -with-rtsopts=-N
library
import: language
hs-source-dirs: src
build-depends:
, attoparsec
, base >=4.11 && <5
, data-default-class
, data-fix
, dhall
, either
, ini >=0.4.0
, path >=0.8.0
, path-io >=1.6.0
, prettyprinter
, recursion-schemes
, rio >=0.1.12.0
extra-libraries: alpm
build-tool-depends: c2hs:c2hs -any
-- cabal-fmt: expand src/ -Import
exposed-modules:
Archlinux.Alpm
Run
Types
Types.Dhall
other-modules:
Import
Paths_dhalpm
autogen-modules: Paths_dhalpm
executable dhalpm
import: language
import: rts
hs-source-dirs: app/dhalpm
main-is: Main.hs
build-depends:
, base >=4.14 && <4.17
, dhalpm
-- cabal-fmt: expand app/dhalpm -Main
other-modules: Paths_dhalpm
autogen-modules: Paths_dhalpm
test-suite test
import: language
import: rts
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends:
, base >=4.14 && <4.17
, dhalpm
, hspec
, path
, path-io
, QuickCheck
, rio
build-tool-depends: hspec-discover:hspec-discover -any
-- cabal-fmt: expand test/ -Spec
other-modules:
Archlinux.AlpmSpec
Paths_dhalpm
RunSpec
autogen-modules: Paths_dhalpm
source-repository head
type: git
location: https://github.com/mmhat/dhalpm