-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsixel.cabal
39 lines (37 loc) · 1.34 KB
/
sixel.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
cabal-version: >=1.10
name: sixel
version: 0.1.2.3
synopsis: Sixel library to show images in a terminal emulator
description: Sixel can show graphics on a terminal emulator. This library is developed to showing images on ghci.
license: BSD3
license-file: LICENSE
homepage: https://github.com/junjihashimoto/sixel#readme
author: Junji Hashimoto
maintainer: junji.hashimoto@gmail.com
copyright: 2020 Junji hashimoto
category: graphics
build-type: Simple
extra-source-files: CHANGELOG.md
, demo.png
, demo-osc1337.png
, README.md
library
exposed-modules: Data.Sixel
, Data.Sixel.Internal
, Data.OSC1337
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, JuicyPixels
, vector
, bytestring
, process
, temporary
, base64-bytestring
c-sources: csrc/sixel.c
executable sixel-exe
main-is: Main.hs
hs-source-dirs: app
build-depends: base >= 4.7 && < 5
, sixel
default-language: Haskell2010