diff options
| author | Eugen Wissner <belka@caraus.de> | 2023-03-13 10:51:25 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2023-03-13 10:51:25 +0100 |
| commit | 384e9e7bd3cc0acc0d82e40e9318b033fcb6a600 (patch) | |
| tree | e0baa004aeea07cc37f11b016c9734878c20f85d /fountainhead.cabal | |
| download | fountainhead-384e9e7bd3cc0acc0d82e40e9318b033fcb6a600.tar.gz | |
Initial commit
Diffstat (limited to 'fountainhead.cabal')
| -rw-r--r-- | fountainhead.cabal | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/fountainhead.cabal b/fountainhead.cabal new file mode 100644 index 0000000..b0c2662 --- /dev/null +++ b/fountainhead.cabal @@ -0,0 +1,35 @@ +cabal-version: 2.4 +name: fountainhead +version: 0.1.0.0 + +synopsis: TrueType font parser +description: TrueType font parseer. +bug-reports: https://git.caraus.tech/OSS/fountainhead + +license-files: LICENSE +license: MPL-2.0 + +author: Eugen Wissner +maintainer: belka@caraus.de + +copyright: (c) 2023 Eugen Wissner +category: Graphics + +extra-source-files: + CHANGELOG.md + README.txt + +library + exposed-modules: + Graphics.Fountainhead.Parser + Graphics.Fountainhead.Type + Graphics.Fountainhead.TrueType + hs-source-dirs: + src + build-depends: + base ^>=4.16.3.0, + bytestring ^>= 0.11.0, + containers ^>= 0.6.5, + megaparsec ^>= 9.3, + time ^>= 1.12, + vector ^>= 0.13.0 |
