-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
50 lines (45 loc) · 968 Bytes
/
package.yaml
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
name: ztar
version: 1.0.2
license: BSD3
author: Brandon Chinn <brandonchinn178@gmail.com>
maintainer: Brandon Chinn <brandonchinn178@gmail.com>
category: Codec
synopsis: Creating and extracting arbitrary archives
description: Creating and extracting arbitrary archives.
extra-doc-files:
- CHANGELOG.md
- README.md
github: brandonchinn178/ztar
ghc-options: -Wall
library:
source-dirs: src
dependencies:
- base >= 4.7 && < 5
- bytestring >= 0.10.8
- directory >= 1.3
- filepath >= 1.4.1
- path >= 0.5
- tar >= 0.5
- zip >= 1.0
- zlib >= 0.6
tests:
example:
main: test/Example.hs
dependencies:
- base
- path
- path-io
- ztar
ztar-test:
main: test/Test.hs
dependencies:
- base
- bytestring
- filepath
- path
- path-io
- QuickCheck
- quickcheck-instances
- tasty
- tasty-quickcheck
- ztar