-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpaths.cabal
102 lines (86 loc) · 3.45 KB
/
paths.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
cabal-version: 1.12
name: paths
version: 0.2.0.0
x-revision: 2
synopsis: Library for representing and manipulating type-safe file paths
description: This library provides a more type-safe version of 'FilePath's together with thin wrappers around common IO operations.
.
This library is directly derived from @hackage-security@'s
<http://hackage.haskell.org/package/hackage-security-0.5.2.2/docs/Hackage-Security-Util-Path.html Hackage.Security.Util.Path>
module.
bug-reports: https://github.com/hvr/paths/issues
license: BSD3
license-file: LICENSE
author: Herbert Valerio Riedel
copyright: 2015-2017 Well-Typed LLP,
2017 Herbert Valerio Riedel
maintainer: [email protected]
category: System
build-type: Simple
extra-source-files: ChangeLog.md
tested-with: GHC == 7.4.2
|| == 7.6.3
|| == 7.8.4
|| == 7.10.3
|| == 8.0.2
|| == 8.2.2
|| == 8.4.4
|| == 8.6.5
|| == 8.8.4
|| == 8.10.7
|| == 9.0.2
|| == 9.2.5
|| == 9.4.4
Flag directory--LT-1_2
description: [directory](https://hackage.haskell.org/package/directory) < 1.2
manual: False
default: False
library
hs-source-dirs: src
exposed-modules: System.Path
System.Path.Lens
System.Path.IO
System.Path.IO.ByteString
System.Path.IO.Directory
System.Path.IO.Handle
System.Path.IO.Text
System.Path.QQ
System.Path.Unsafe
other-modules: System.Path.Internal
System.Path.Internal.Typeable
System.Path.Internal.Compat
System.Path.Internal.Native
default-language: Haskell2010
other-extensions: CPP
, DefaultSignatures
, DeriveDataTypeable
, ExistentialQuantification
, Safe
, ScopedTypeVariables
, Unsafe
, Trustworthy
if impl(ghc >= 8.0)
other-extensions: TemplateHaskellQuotes
else
other-extensions: TemplateHaskell
build-depends: base >=4.5 && <4.18
, bytestring >=0.9.2 && <0.12
, deepseq >=1.3 && <1.5
, directory >=1.1 && <1.4
, filepath >=1.3 && <1.5
, template-haskell >=2.7 && <2.20
, text >=0.11 && <1.3 || >=2.0 && <2.1
, time >=1.4 && <1.13
if !impl(ghc >= 8.0)
build-depends: transformers >= 0.3 && < 0.6
if flag(directory--LT-1_2)
build-depends: directory < 1.2
, old-time >= 1 && < 1.2
else
build-depends: directory >= 1.2
ghc-options: -Wall
if os(windows)
build-depends: Win32 >=2.3.0.0 && <2.9
source-repository head
location: https://github.com/hvr/paths.git
type: git