-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
51 lines (46 loc) · 978 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
51
name: drone-convert-dhall
version: 0.1.0
github: "Pr0Ger/drone-convert-dhall"
license: MIT
author: "Sergey Petrov"
maintainer: "[email protected]"
synopsis: Add support for Drone pipelines configuration in dhall
description: |
A Drone plugin to convert *.dhall file to proper yaml description
category: Development
dependencies:
- aeson
- base >= 4.7 && < 5
library:
dependencies:
- dhall
- dhall-yaml
- microlens-platform
- microlens-th
- text
source-dirs: src
when:
- condition: false
other-modules:
- Main
executables:
drone-convert-dhall:
main: drone-convert-dhall.hs
dependencies:
- bytestring
- drone-convert-dhall
- dhall-yaml
- filepath
- microlens-platform
- scotty
- text
- wai-extra
tests:
drone-convert-dhall-test:
source-dirs: tests
main: Main.hs
dependencies:
- drone-convert-dhall
- tasty
- tasty-hspec
- QuickCheck