From 162f633a5521150909406737f20765c286a4e74d Mon Sep 17 00:00:00 2001 From: Hannes Mehnert Date: Mon, 26 Sep 2022 13:43:57 +0200 Subject: [PATCH] opam: add dependencies --- git-kv.opam | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/git-kv.opam b/git-kv.opam index e54385e..14f7b5e 100644 --- a/git-kv.opam +++ b/git-kv.opam @@ -1,4 +1,20 @@ opam-version: "2.0" maintainer: "Robur Team " -authors: "Robur Team " -synopsis: "Not empty" +authors: [ "Robur Team " ] +homepage: "https://git.robur.io/robur/git-kv" +dev-repo: "git+https://git.robur.io/robur/git-kv.git" +bug-reports: "https://git.robur.io/robur/git-kv" +synopsis: "A Mirage_kv implementation using git" + +depends: [ + "ocaml" {>= "4.08.0"} + "dune" {>= "2.0.0"} + "git" {>= "3.9.0"} + "mirage-kv" {>= "4.0.0"} + "ptime" +] + +build: [ + ["dune" "subst"] {dev} + ["dune" "build" "-p" name "-j" jobs] +]