about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/gluten/lwt-unix.nix
blob: f3986b05135556c5b6c19c2ade035a8288de32e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ buildDunePackage
, faraday-lwt-unix
, gluten
, gluten-lwt
, lwt_ssl
}:

buildDunePackage rec {
  pname = "gluten-lwt-unix";
  inherit (gluten) doCheck meta src useDune2 version;

  propagatedBuildInputs = [
    faraday-lwt-unix
    gluten-lwt
    lwt_ssl
  ];
}