aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/mirage/types-lwt.nix
blob: ac232b0be6e1860c4079a56c1224a65098f04292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, buildDunePackage, mirage-types
}:

buildDunePackage {
  pname = "mirage-types-lwt";
  inherit (mirage-types) version src useDune2;

  propagatedBuildInputs = [ mirage-types ];

  meta = mirage-types.meta // {
    description = "Lwt module type definitions for MirageOS applications";
  };
}