-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrldd.cabal
44 lines (40 loc) · 1.23 KB
/
grldd.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
Name: grldd
Version: 0.4.3
Synopsis: Recursive dependency printing tool
Description:
A simple recursive dependency printing tool for ELF objects.
Based on the GNU ldd command output. It generates graphviz dot
file as output.
License: GPL
License-File: LICENSE
Author: Laszlo Nagy
Maintainer: Laszlo Nagy <[email protected]>
Category: System
Stability: Experimental
Build-type: Simple
Cabal-Version: >= 1.9.2
Executable grldd
extensions: ScopedTypeVariables
hs-source-dirs: Src
Main-Is: Main.hs
other-modules: Graph Ldd Dpkg
Build-Depends: base,
mtl,
parsec,
unix,
fgl,
process,
containers
Test-Suite unit-test
type: exitcode-stdio-1.0
hs-source-dirs: Src Test
Main-Is: Test.hs
other-modules: GraphTest ParserTest
Build-Depends: base,
mtl,
parsec,
unix,
fgl,
process,
containers,
HUnit