-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathelf.cabal
47 lines (43 loc) · 1.35 KB
/
elf.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
Name: elf
Version: 0.31
License: BSD3
License-file: LICENSE
Category: Data
Author: Erik Charlebois
Copyright: Erik Charlebois
Maintainer: Baojun Wang <[email protected]>
Stability: stable
Cabal-Version: >= 1.10
Homepage: https://github.com/wangbj/elf
Build-Type: Simple
Synopsis: An Elf parser
Description: Parser for ELF object format.
Extra-Source-Files: testdata/tiny testdata/bloated testdata/HOWTO
testdata/bloated.cpp testdata/tiny.asm
testdata/empty testdata/vdso
tested-with:
GHC == 8.6.2
, GHC == 8.4.4
, GHC == 8.2.2
, GHC == 8.0.2
source-repository head
type: git
location: https://github.com/wangbj/elf.git
library
build-depends: base >= 2 && < 5
, bytestring
, binary >= 0.6
hs-source-dirs: src
exposed-modules: Data.Elf
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Spec.hs
other-modules: Data.ElfSpec
build-depends: base
, bytestring
, hspec >= 2.4 && < 3
, containers >= 0.5.9.2
, elf
default-language: Haskell2010