nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 20 lines 302 B view raw
1{ 2 buildDunePackage, 3 httpun-lwt, 4 gluten-lwt-unix, 5}: 6 7buildDunePackage { 8 pname = "httpun-lwt-unix"; 9 10 inherit (httpun-lwt) version src; 11 12 propagatedBuildInputs = [ 13 httpun-lwt 14 gluten-lwt-unix 15 ]; 16 17 meta = httpun-lwt.meta // { 18 description = "Lwt + Unix support for httpun"; 19 }; 20}