aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/mirage-flow/unix.nix
blob: 7a20ca87f8f355600240c97d5e8b6afcbe311bc0 (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 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";
  };
}