ocamlPackages.opium: init at 0.17.1

This commit is contained in:
Patrick Mahoney
2019-07-07 08:15:39 +00:00
committed by Vincent Laporte
parent aa7fbe4d2e
commit e485b10d3e
3 changed files with 76 additions and 0 deletions
@@ -0,0 +1,30 @@
{ buildDunePackage
, ppx_sexp_conv
, ppx_fields_conv
, cmdliner
, cohttp-lwt-unix
, logs
, magic-mime
, opium_kernel
, stringext
, alcotest
}:
buildDunePackage rec {
pname = "opium";
inherit (opium_kernel) version src meta minimumOCamlVersion;
doCheck = true;
buildInputs = [
ppx_sexp_conv ppx_fields_conv
alcotest
];
propagatedBuildInputs = [
opium_kernel cmdliner cohttp-lwt-unix magic-mime logs stringext
];
}