-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartly.cabal
64 lines (64 loc) · 1.63 KB
/
partly.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Name: partly
Author: Tim Dixon <[email protected]>
Maintainer: Tim Dixon <[email protected]>
Version: 1.0.0.3
License: BSD3
License-File: LICENSE.txt
Copyright: (c) 2012 Tim Dixon
Category: System, Filesystem
Synopsis: Inspect, create, and alter MBRs.
Description: A Haskell library and command-line tool to create, inspect, and alter master boot records.
Homepage: https://github.com/startling/partly
Bug-Reports: https://github.com/startling/partly/issues
Tested-With: GHC == 7.4.2
Cabal-Version: >= 1.8
Stability: experimental
Build-Type: Simple
Library
exposed-modules:
System.Disk.Partitions.MBR
build-depends:
base >= 4 && < 5
, bytestring >= 0.9
, binary >= 0.6.4.0
Executable partly
main-is: partly.hs
other-modules:
Partly.View
, Partly.Make
, Partly.Json
, Partly.Common
build-depends:
base >= 4 && < 5
, bytestring >= 0.9
, binary >= 0.6.4.0
, aeson >= 0.6
, aeson-pretty >= 0.7
, vector >= 0.9
, base64-bytestring >= 0.1.2.0
, optparse-applicative >= 0.4.1
Test-Suite test-partly-lib
type: exitcode-stdio-1.0
main-is: test-lib.hs
build-depends:
base >= 4 && < 5
, bytestring >= 0.9
, binary >= 0.6.4.0
, QuickCheck >= 2.5
Test-Suite test-partly-json
type: exitcode-stdio-1.0
main-is: test-json.hs
other-modules:
Partly.Json
, System.Disk.Partitions.MBR.Gen
build-depends:
base >= 4 && < 5
, bytestring >= 0.9
, binary >= 0.6.4.0
, aeson >= 0.6
, vector >= 0.9
, base64-bytestring >= 0.1.2.0
, QuickCheck >= 2.5
Source-Repository head
type: git
location: https://github.com/startling/partly.git