-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhmp3-ng.cabal
More file actions
119 lines (106 loc) · 2.02 KB
/
Copy pathhmp3-ng.cabal
File metadata and controls
119 lines (106 loc) · 2.02 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
cabal-version: 3.0
name: hmp3-ng
version: 2.19.1
synopsis: A TUI mp3 player written in Haskell
description:
An mp3 player with a curses frontend. Playlists are populated by
passing file and directory names on the command line. 'h' displays
help.
category: Sound
homepage: https://github.com/galenhuntington/hmp3-ng#readme
bug-reports: https://github.com/galenhuntington/hmp3-ng/issues
author: Don Stewart, Galen Huntington
maintainer: Galen Huntington
license: GPL-2.0-or-later
license-file: LICENSE
build-type: Simple
extra-doc-files:
README.md
source-repository head
type: git
location: https://github.com/galenhuntington/hmp3-ng
common opts
default-language: GHC2021
default-extensions:
BlockArguments
DuplicateRecordFields
MultiWayIf
NoFieldSelectors
OverloadedRecordDot
OverloadedStrings
RecordWildCards
-- In GHC2024
DataKinds
DerivingStrategies
LambdaCase
ghc-options:
-Wall
-Wprepositive-qualified-module
library
import: opts
hs-source-dirs: ./
exposed-modules:
Base
Core
Decoder
Elements
Keyboard
Keymap
Playlist
State
Style
Text
UI
other-modules:
Paths_hmp3_ng
autogen-modules:
Paths_hmp3_ng
pkgconfig-depends:
ncursesw
build-depends:
array,
base >=4.16 && <5,
bytestring >=0.10,
clock,
containers,
directory >=1.3.7.0,
filepath,
hscurses,
mtl,
posix-paths,
process,
random,
regex-posix,
transformers,
unix >=2.8,
utf8-string,
executable hmp3
import: opts
main-is: Main.hs
hs-source-dirs: app
ghc-options: -threaded
build-depends:
base,
hmp3-ng,
optparse-applicative,
unix,
utf8-string,
test-suite test
import: opts
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
DecoderSpec
ElementsSpec
PlaylistSpec
StyleSpec
TextSpec
build-depends:
base,
bytestring,
clock,
hmp3-ng,
tasty >=1.4,
tasty-hunit >=0.10,
utf8-string,