forked from kfl/ebpf-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ebpf-tools.cabal
48 lines (38 loc) · 1.11 KB
/
ebpf-tools.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
48
cabal-version: 2.4
name: ebpf-tools
version: 0.1.0.0
synopsis: Assembler and disassembler for eBPF bytecode
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
license: MIT
license-file: LICENSE
author: Ken Friis Larsen
maintainer: [email protected]
-- A copyright notice.
copyright:
-- category:
extra-source-files: CHANGELOG.md
common deps
build-depends: base ^>=4.14.3.0,
bytestring
default-language: Haskell2010
library
import: deps
exposed-modules: Ebpf.Asm
, Ebpf.AsmParser
, Ebpf.Encode
, Ebpf.Helpers
-- Modules included in this library but not exported.
-- other-modules:
build-depends: containers,
parsec
hs-source-dirs: src
executable ebpf-tools
import: deps
main-is: Main.hs
build-depends: ebpf-tools,
optparse-applicative,
pretty-simple
hs-source-dirs: app