summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/paf/default.nix
blob: 375ba1c125e8a50b3c992f4242df97a2a02b28bf (plain) (tree)
1
2
3
4
5
6
7
8






                  
    

























                      
                    


                                                                                                      
                                                                                








                               
      


































                                                           
{ buildDunePackage
, lib
, fetchurl
, fetchpatch
, mirage-stack
, mirage-time
, httpaf
, h2
, tls-mirage
, mimic
, cohttp-lwt
, letsencrypt
, emile
, ke
, bigstringaf
, domain-name
, duration
, faraday
, ipaddr
, tls
, x509
, lwt
, logs
, fmt
, mirage-crypto-rng
, tcpip
, mirage-time-unix
, ptime
, uri
, alcotest-lwt
}:

buildDunePackage rec {
  pname = "paf";
  version = "0.0.3";

  src = fetchurl {
    url = "https://github.com/dinosaure/paf-le-chien/releases/download/${version}/paf-${version}.tbz";
    sha256 = "a0bbb84b19e1f0255337fc4d7017f3ea3611b241746e391b11c1d8b1f5f30a2b";
  };

  useDune2 = true;
  minimumOCamlVersion = "4.08";

  propagatedBuildInputs = [
    mirage-stack
    mirage-time
    httpaf
    h2
    tls-mirage
    mimic
    cohttp-lwt
    letsencrypt
    emile
    ke
    bigstringaf
    domain-name
    ipaddr
    duration
    faraday
    tls
    x509
  ];

  doCheck = true;
  checkInputs = [
    lwt
    logs
    fmt
    mirage-crypto-rng
    tcpip
    mirage-time-unix
    ptime
    uri
    alcotest-lwt
  ];

  meta = {
    description = "HTTP/AF and MirageOS";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.sternenseemann ];
    homepage = "https://github.com/dinosaure/paf-le-chien";
  };
}