-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhymn.cabal
More file actions
46 lines (43 loc) · 1.37 KB
/
hymn.cabal
File metadata and controls
46 lines (43 loc) · 1.37 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
cabal-version: 2.2
name: hymn
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/githubuser/hymn#readme
license: BSD-3-Clause
license-file: LICENSE
author: Author name here
maintainer: example@example.com
copyright: 2025 Author name here
category: Music
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
executable hymn
hs-source-dirs: app
main-is: Hymn/Main.hs
other-modules: Hymn.CLI
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, hymn-core
, hymn-xml
, optparse-applicative
, text
ghc-options: -Wall
test-suite hymn-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Properties, Integration, Golden
build-depends: base >= 4.7 && < 5
, hymn-core
, hymn-xml
, hspec
, QuickCheck
, temporary
, directory
, filepath
, bytestring
, text
ghc-options: -Wall
default-language: Haskell2010