nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 51 lines 615 B view raw
1{ 2 buildDunePackage, 3 paf, 4 cohttp-lwt, 5 domain-name, 6 h1, 7 ipaddr, 8 alcotest-lwt, 9 fmt, 10 logs, 11 mirage-crypto-rng, 12 tcpip, 13 uri, 14 lwt, 15 astring, 16}: 17 18buildDunePackage { 19 pname = "paf-cohttp"; 20 21 inherit (paf) 22 version 23 src 24 ; 25 26 propagatedBuildInputs = [ 27 paf 28 cohttp-lwt 29 domain-name 30 h1 31 ipaddr 32 ]; 33 34 doCheck = true; 35 checkInputs = [ 36 alcotest-lwt 37 fmt 38 logs 39 mirage-crypto-rng 40 tcpip 41 uri 42 lwt 43 astring 44 ]; 45 46 __darwinAllowLocalNetworking = true; 47 48 meta = paf.meta // { 49 description = "CoHTTP client with its HTTP/AF implementation"; 50 }; 51}