Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 github, 4 cohttp, 5 cohttp-lwt-unix, 6 stringext, 7 cmdliner, 8 lwt, 9}: 10 11buildDunePackage { 12 pname = "github-unix"; 13 inherit (github) version src; 14 15 postPatch = '' 16 substituteInPlace unix/dune --replace 'github bytes' 'github' 17 ''; 18 19 propagatedBuildInputs = [ 20 github 21 cohttp 22 cohttp-lwt-unix 23 stringext 24 cmdliner 25 lwt 26 ]; 27 28 meta = github.meta // { 29 description = "GitHub APIv3 Unix library"; 30 }; 31}