-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpd-current-json.cabal
84 lines (73 loc) · 2.75 KB
/
mpd-current-json.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: 3.0
name: mpd-current-json
-- The package version.
-- See the Haskell package versioning policy (PVP) for standards
-- guiding when and how versions should be incremented.
-- https://pvp.haskell.org
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 2.1.0.0
synopsis: Print current MPD song and status as JSON
tested-with: GHC == { 9.10.1, 9.4.8 }
-- A longer description of the package.
description: Print currently playing MPD's song metadata and status as JSON
homepage: https://codeberg.org/useless-utils/mpd-current-json
-- A URL where users can report bugs.
-- bug-reports:
license: Unlicense
license-file: UNLICENSE
author: Lucas G
maintainer: [email protected]
-- A copyright notice.
-- copyright:
category: Network
extra-doc-files: CHANGELOG.md
README.org
source-repository head
type: git
location: https://codeberg.org/useless-utils/mpd-current-json
library
-- exposed: False
exposed-modules: Network.MPD.Parse
Network.MPD.JSON
build-depends: base >=4.16 && <5
, libmpd == 0.10.*
, aeson == 2.2.*
, aeson-pretty == 0.8.*
, bytestring >=0.11 && <0.13
hs-source-dirs: lib
default-language: Haskell2010
executable mpd-current-json
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: Options
Paths_mpd_current_json
Version
autogen-modules: Paths_mpd_current_json
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base
, libmpd
, optparse-applicative == 0.18.*
, aeson
, aeson-pretty
, bytestring
, mpd-current-json
-- Directories containing source files.
hs-source-dirs: src
default-language: Haskell2010
-- [[https://kowainik.github.io/posts/2019-02-06-style-guide#ghc-options][Haskell Style Guide :: Kowainik]]
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
-Wmissing-export-lists
-Wpartial-fields
-Wmissing-deriving-strategies
-Wunused-packages
-fwrite-ide-info
-hiedir=.hie
-O2