nixpkgs/pkgs/development/ocaml-modules/paf/le.nix
2022-12-26 07:46:03 +01:00

42 lines
496 B
Nix

{ lib
, buildDunePackage
, paf
, duration
, emile
, httpaf
, letsencrypt
, mirage-stack
, mirage-time
, tls-mirage
, x509
}:
buildDunePackage {
pname = "paf-le";
inherit (paf)
version
src
;
duneVersion = "3";
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";
};
}