nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

ocamlPackages.httpun-lwt: init at 0.2.0

authored by

Vincent Laporte and committed by
Vincent Laporte
93610818 8a24fbd0

+26
+24
pkgs/development/ocaml-modules/httpun/lwt.nix
··· 1 + { 2 + buildDunePackage, 3 + httpun, 4 + lwt, 5 + gluten, 6 + gluten-lwt, 7 + }: 8 + 9 + buildDunePackage { 10 + pname = "httpun-lwt"; 11 + 12 + inherit (httpun) version src; 13 + 14 + propagatedBuildInputs = [ 15 + gluten 16 + gluten-lwt 17 + httpun 18 + lwt 19 + ]; 20 + 21 + meta = httpun.meta // { 22 + description = "Lwt support for httpun"; 23 + }; 24 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 711 711 712 712 httpun-eio = callPackage ../development/ocaml-modules/httpun/eio.nix { }; 713 713 714 + httpun-lwt = callPackage ../development/ocaml-modules/httpun/lwt.nix { }; 715 + 714 716 httpun-types = callPackage ../development/ocaml-modules/httpun/types.nix { }; 715 717 716 718 httpun-ws = callPackage ../development/ocaml-modules/httpun-ws { };