-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
47 lines (47 loc) · 1.03 KB
/
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
name: rawfilepath
version: 1.1.1
synopsis: Use RawFilePath instead of FilePath
description: A fast and safe API with high-level features on `RawFilePath`, instead of `FilePath`, to avoid the encoding issues or performance penalties. Please see `README.md`
category: System
author: XT et al.
maintainer: git@xtendo.org
copyright: (C) 2016-2024 XT et al.
license: Apache-2.0
github: xtendo-org/rawfilepath
extra-source-files:
- README.md
dependencies:
- bytestring
library:
source-dirs: src
c-sources:
- cbits/runProcess.c
- cbits/processFlags.c
- cbits/processFlags.h
default-extensions:
- BangPatterns
- CPP
- LambdaCase
- OverloadedStrings
- RecordWildCards
include-dirs:
- cbits
exposed-modules:
- Data.ByteString.RawFilePath
- RawFilePath
- RawFilePath.Directory
- RawFilePath.Process
dependencies:
- base >= 4.7 && < 5
- unix
tests:
RawFilePath-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- rawfilepath