aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/mirage-flow/unix.nix
blob: 3bd676b45fa0e68550c58a4d9cd30fae458b6ebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ buildDunePackage, fmt, logs, mirage-flow, ocaml_lwt, cstruct
, alcotest, mirage-flow-combinators }:

buildDunePackage {
  pname = "mirage-flow-unix";

  inherit (mirage-flow) version useDune2 src;

  propagatedBuildInputs = [ fmt logs mirage-flow ocaml_lwt cstruct ];

  doCheck = true;
  checkInputs = [ alcotest mirage-flow-combinators ];

  meta = mirage-flow.meta // {
    description = "Flow implementations and combinators for MirageOS on Unix";
  };
}