nixpkgs/pkgs/development/ocaml-modules/paf/le.nix
Vincent Laporte 565589da39
ocamlPackages.paf: 0.0.8 → 0.1.0
ocamlPackages.{hpack,h2}: 0.8.0 → 0.9.0
2022-09-16 20:51:17 +02:00

40 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";
};
}