-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnar.cabal
58 lines (54 loc) · 1.87 KB
/
nar.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
Name: nar
Version: 0.1.0
Synopsis: New Archiving
Description:
A simple archiving format like tar tailored for grouping and distribution (not backup)
.
Features:
* file stored contiguously. support mmap type access.
* per file compression and ciphering.
* optional cryptographic signature.
* high filepath size and content size limits.
* modern and no cruft format.
* optional index for faster lookup.
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <[email protected]>
Author: Vincent Hanquez <[email protected]>
Maintainer: [email protected]
Category: archiving
Stability: experimental
Build-Type: Simple
Homepage: https://github.com/vincenthz/hs-nar
Cabal-Version: >=1.8
data-files: README.md
Library
Exposed-modules: Archive.Nar
Other-modules: Archive.Nar.Types
, Archive.Nar.Serialization
, Archive.Nar.UTF8
Build-depends: base >= 4 && < 5
, bytestring
, ghc-prim
, zlib
ghc-options: -Wall -fwarn-tabs
--Executable nar
-- Main-Is: nar.hs
-- ghc-options: -Wall -fno-warn-missing-signatures
-- Hs-Source-Dirs: .
-- Build-depends: base >= 4 && < 5
Test-Suite test-nar
type: exitcode-stdio-1.0
hs-source-dirs: tests .
Main-is: Tests.hs
Build-Depends: base >= 3 && < 5
, ghc-prim
, mtl
, tasty
, tasty-quickcheck
, tasty-hunit
, bytestring
ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures
source-repository head
type: git
location: https://github.com/vincenthz/hs-nar