forked from LuxMiranda/herms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathherms.cabal
More file actions
119 lines (92 loc) · 3.82 KB
/
herms.cabal
File metadata and controls
119 lines (92 loc) · 3.82 KB
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
114
115
116
117
118
119
-- Initial herms.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
-- The name of the package.
name: herms
-- The package description
description: HeRM's: a Haskell-based Recipe Manager for delicious kitchen recipes
tested-with: GHC == 8.4.1
GHC == 8.2.2
GHC == 8.0.2
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- New features or improvements with significant API change
-- | | +----- Bugfixes and improvements with minor change to API
-- | | | +--- Bugfixes and improvements with no change to API
version: 1.9.0.0
-- A short (one-line) description of the package.
synopsis: A command-line manager for delicious kitchen recipes
-- A longer description of the package.
-- description:
-- URL for the project homepage or repository.
homepage: https://github.com/JackKiefer/herms
-- The license under which the package is released.
license: GPL-3
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: Jack Kiefer
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: jack.c.kiefer@gmail.com
-- A copyright notice.
-- copyright:
category: Culinary, CLI, Command Line Tool
build-type: Simple
-- Extra files to be distributed with the package, such as examples or a
-- README.
extra-source-files: README.md, changelog
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
-- Files available to the program at runtime
data-files: recipes.herms, config.hs
-- The directory name for the aboce files
data-dir: data
executable herms
hs-source-dirs: app, src
-- .hs or .lhs file containing the Main module.
main-is: herms.hs
-- Modules included in this executable, other than Main.
other-modules: Utils
, AddCLI
, RichText
, ReadConfig
, Types
, UnitConversions
, Paths_herms
, Lang.Strings
, Lang.Pirate
, Lang.Portuguese
, Lang.French
-- LANGUAGE extensions used by modules in this package.
other-extensions: OverloadedStrings, TemplateHaskell, RankNTypes
-- Other library packages from which modules are imported.
build-depends: ansi-terminal >= 0.7.0 && <= 0.8.1
, base >=4.8 && <5
, brick >= 0.19 && < 0.38
, directory >= 0.0
, microlens >=0.4 && <0.5
, microlens-th >=0.4 && <0.5
, mtl >= 2.2.1 && <= 2.2.2
, optparse-applicative >=0.14 && <0.15
, semigroups >= 0.18.3 && <= 0.18.4
, split >=0.2 && <0.3
, vty >=5.15 && < 5.22
-- Directories containing source files.
-- hs-source-dirs:
-- Base language which the package is written in.
default-language: Haskell2010
-- Compiler flags
ghc-options: -threaded
-- no test suite so far
--test-suite herms-test
-- type: exitcode-stdio-1.0
-- hs-source-dirs: test
-- main-is: Spec.hs
-- build-depends: base
-- , herms
-- ghc-options: -threaded -rtsopts -with-rtsopts=-N
-- default-language: Haskell2010
source-repository head
type: git
location: https://github.com/JackKiefer/herms