File: bytedump.cabal

package info (click to toggle)
haskell-bytedump 1.0-9
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 72 kB
  • sloc: haskell: 150; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,207 bytes parent folder | download | duplicates (6)
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
Name:                bytedump
Version:             1.0
Description:
    A set of helpers to dump bytes with lots of different output formats
    easy to read for humans eyes.
License:             BSD3
License-file:        LICENSE
Author:              Vincent Hanquez
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          Vincent Hanquez <vincent@snarc.org>
Synopsis:            Flexible byte dump helpers for human readers.
Build-Type:          Simple
Category:            Debug
Homepage:            http://github.com/vincenthz/hs-bytedump
Cabal-Version:       >=1.6
Data-Files:          README.md

Flag executable
  Description:       Build the executable
  Default:           False

Library
  Build-Depends:     base >= 3 && < 5
                   , bytestring
  Exposed-modules:   Text.Bytedump
  ghc-options:       -Wall

Executable           Hexdump
  Main-is:           Hexdump.hs
  if flag(executable)
    Buildable:       True
    Build-Depends:   base >= 3 && < 5
                   , bytestring
  else
    Buildable:       False

source-repository head
  type: git
  location: git://github.com/vincenthz/hs-bytedump