-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
63 lines (56 loc) · 1.34 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: haskell-ffprobe
version: 0.1.0.1
github: "Arthi-chaud/haskell-ffprobe"
license: BSD-3-Clause
author: "Arthi-chaud"
copyright: "2024 Arthi-chaud"
synopsis: Haskell bindings for ffprobe
category: Bindings
extra-doc-files:
- README.md
- CHANGELOG.md
description: Use ffprobe data in Haskell. Checkout the README on GitHub for an example.
dependencies:
- base >= 4.7 && < 5
- aeson >= 2.1.2.1 && <= 2.2.3.0
- bytestring >= 0.11.5 && < 0.12
default-extensions:
- OverloadedStrings
- LambdaCase
- FlexibleInstances
- RecordWildCards
- DeriveGeneric
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
dependencies:
- process >= 1.6.18 && < 1.7
- scientific >= 0.3.7 && <= 0.3.8.0
- text >= 2.0.2 && < 2.1
exposed-modules:
- FFProbe
- FFProbe.Data.Chapter
- FFProbe.Data.Format
- FFProbe.Data.Stream
- FFProbe.Data.Tags
tests:
haskell-ffprobe-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-ffprobe
- hspec
- hspec-expectations