-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontroller-pak.cabal
More file actions
64 lines (52 loc) · 1.67 KB
/
Copy pathcontroller-pak.cabal
File metadata and controls
64 lines (52 loc) · 1.67 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
cabal-version: 2.4
name: controller-pak
version: 0.4.0.0
-- A short (one-line) description of the package.
synopsis: Reading Nintendo64 Controller Pak data
license: MIT
author: José Manuel Calderón Trilla
maintainer: jmct@jmct.cc
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
exposed-modules: Data.Pak
Data.Pak.Display
Data.Pak.Note.Utils
Data.Pak.Internal
Data.Pak.INodeTable
Data.Pak.NoteTable
Data.Pak.Parse
Data.Pak.Types
Data.Pak.Utils
Data.Pak.File
Data.N64Font
Data.MIO0
Codec.MIO0
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>=4.15.0.0
, binary
, bytestring
, containers
, lens
, mtl
, vector
hs-source-dirs: src
default-language: Haskell2010
executable cpak
main-is: Main.hs
Modules included in this executable, other than Main.
other-modules: Main.Options
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
base ^>=4.15.0.0,
bytestring,
controller-pak,
optparse-applicative
hs-source-dirs: app
default-language: Haskell2010