1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/ocaml-modules/caqti/lwt.nix
Aaron L. Zeng 1b6764da4e
ocamlPackages.caqti*: init at 1.3.0
Except for caqti-type-calendar, whose most recent version number is
1.2.0.
2021-01-30 11:37:36 +01:00

12 lines
255 B
Nix

{ lib, buildDunePackage, caqti, logs, lwt }:
buildDunePackage {
pname = "caqti-lwt";
useDune2 = true;
inherit (caqti) version src;
propagatedBuildInputs = [ caqti logs lwt ];
meta = caqti.meta // { description = "Lwt support for Caqti"; };
}