this repo has no description
1opam-version: "2.0"
2maintainer: "Nathan Rebours <nathan.p.rebours@gmail.com>"
3homepage: "https://github.com/cryptosense/ppx_factory"
4bug-reports: "https://github.com/cryptosense/ppx_factory/issues"
5license: "BSD-2-Clause"
6dev-repo: "git+https://github.com/cryptosense/ppx_factory.git"
7doc: "https://cryptosense.github.io/ppx_factory/doc"
8build: [
9 [ "dune" "build" "-p" name "-j" jobs ]
10]
11run-test: [
12 [ "dune" "runtest" "-p" name "-j" jobs ]
13]
14depends: [
15 "dune"
16 "ocaml" {>= "4.07.0"}
17 "ounit" {with-test & >= "2.0.0"}
18 "ppxlib" {>= "0.3.0" & < "0.9.0"}
19 "ppx_deriving" {with-test}
20]
21tags: ["org:cryptosense"]
22synopsis: "PPX to derive factories and default values"
23description: """
24ppx_factory is a ppx deriver that builds factory method from record and variant type
25definitions.
26
27Factory methods allow you to build test values by only supplying the parts that are relevant
28to your tests.
29"""
30authors: "Nathan Rebours <nathan.p.rebours@gmail.com>"
31url {
32 src:
33 "https://github.com/cryptosense/ppx_factory/releases/download/v0.0.0/ppx_factory-v0.0.0.tbz"
34 checksum: [
35 "sha256=c83912070c8fc32d34e706d098b3adafad56658828182daa0af60bb1e209562e"
36 "md5=3b17fd7759a44a57f46c9544200f96b4"
37 ]
38}