nixpkgs/pkgs/development/ocaml-modules/gluten/lwt-unix.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
264 B
Nix
Raw Normal View History

{ 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
];
}