-
Notifications
You must be signed in to change notification settings - Fork 1
/
dkim-mirage.opam
32 lines (30 loc) · 1.06 KB
/
dkim-mirage.opam
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
opam-version: "2.0"
name: "dkim"
maintainer: "Romain Calascibetta <[email protected]>"
authors: "Romain Calascibetta <[email protected]>"
homepage: "https://github.com/mirage/ocaml-dkim"
bug-reports: "https://github.com/mirage/ocaml-dkim/issues"
dev-repo: "git+https://github.com/mirage/ocaml-dkim.git"
doc: "https://mirage.github.io/ocaml-dkim/"
license: "MIT"
synopsis: "Implementation of DKIM in OCaml for MirageOS"
description: """A light layer of the dkim library for MirageOS"""
build: [
[ "dune" "subst" ] {dev}
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.0.0"}
"dkim" {= version}
"dns-client-mirage" {>= "8.0.0"}
"mirage-clock"
"tcpip" {>= "7.0.0"}
"lwt"
"alcotest" {with-test}
"digestif" {with-test}
"fmt" {with-test}
"logs" {with-test}
"mirage-crypto-rng" {with-test & >= "1.0.0"}
]