depot/third_party/nixpkgs/pkgs/development/ocaml-modules/paf/le.nix
Default email b41113241d Project import generated by Copybara.
GitOrigin-RevId: ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90
2022-09-22 14:36:57 +02:00

39 lines
474 B
Nix

{ lib
, buildDunePackage
, paf
, duration
, emile
, httpaf
, letsencrypt
, mirage-stack
, mirage-time
, tls-mirage
, x509
}:
buildDunePackage {
pname = "paf-le";
inherit (paf)
version
src
;
propagatedBuildInputs = [
paf
duration
emile
httpaf
letsencrypt
mirage-stack
mirage-time
tls-mirage
x509
];
doCheck = true;
meta = paf.meta // {
description = "A CoHTTP client with its HTTP/AF implementation";
};
}