From a8d644a4acb9d46a290186faeeca7f471036fa87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Wed, 2 Dec 2020 14:51:36 +0100 Subject: [PATCH] Flesh out opam file With dependencies as detected by dune. --- builder.opam | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/builder.opam b/builder.opam index e69de29..4a3dc36 100644 --- a/builder.opam +++ b/builder.opam @@ -0,0 +1,29 @@ +opam-version: "2.0" +maintainer: "Hannes Mehnert " +authors: ["Hannes Mehnert "] +homepage: "https://github.com/roburio/builder" +dev-repo: "git+https://github.com/roburio/builder.git" +bug-reports: "https://github.com/roburio/builder/issues" +license: "ISC" + +depends: [ + "ocaml" + "asn1-combinators" + "bheap" + "bos" + "cmdliner" + "cstruct" + "duration" + "fmt" + "fpath" + "logs" + "lwt" + "ptime" + "rresult" + "uuidm" +] +build: [ + ["dune" "subst"] {pinned} + ["dune" "build" "-p" name "-j" jobs] +] +