Commit 5e09b515 authored by Romain Paquet's avatar Romain Paquet
Browse files

ocamlPackages.tls-miou-unix: init at 2.0.2

parent 0ec0edf1
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{
  buildDunePackage,
  crowbar,
  hxd,
  miou,
  mirage-crypto-rng-miou-unix,
  ohex,
  ptime,
  rresult,
  tls,
  x509,
}:

buildDunePackage {
  pname = "tls-miou-unix";
  inherit (tls) src version;

  propagatedBuildInputs = [
    miou
    tls
    x509
  ];

  doCheck = true;
  checkInputs = [
    crowbar
    hxd
    mirage-crypto-rng-miou-unix
    ohex
    ptime
    rresult
  ];

  meta = tls.meta // {
    description = "Transport Layer Security purely in OCaml, Miou+Unix layer";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2090,6 +2090,8 @@ let

        tls-lwt = callPackage ../development/ocaml-modules/tls/lwt.nix { };

        tls-miou-unix = callPackage ../development/ocaml-modules/tls/miou-unix.nix { };

        tls-mirage = callPackage ../development/ocaml-modules/tls/mirage.nix { };

        toml = callPackage ../development/ocaml-modules/toml { };