nixpkgs/pkgs/development/ocaml-modules/paf/le.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
550 B
Nix
Raw Normal View History

{ lib
, buildDunePackage
, paf
, dns-client-mirage
, duration
, emile
, httpaf
, letsencrypt
, mirage-stack
, mirage-time
, tls-mirage
, x509
}:
buildDunePackage {
pname = "paf-le";
inherit (paf)
version
src
patches
;
2022-12-19 12:28:12 +00:00
duneVersion = "3";
propagatedBuildInputs = [
paf
dns-client-mirage
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";
};
}