depot/pkgs/development/ocaml-modules/zmq/lwt.nix

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

9 lines
149 B
Nix
Raw Normal View History

{ buildDunePackage, zmq, lwt }:
buildDunePackage {
pname = "zmq-lwt";
inherit (zmq) version src meta;
propagatedBuildInputs = [ zmq lwt ];
}