about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mirage-net-xen/default.nix
blob: 0d7a7e53fb1ad0ba15c18bfab5ce5eccccd22140 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, buildDunePackage
, netchannel
, ppx_sexp_conv
, lwt
, cstruct
, mirage-net
, mirage-xen
, io-page
, lwt-dllist
, logs
}:

buildDunePackage {
  pname = "mirage-net-xen";

  inherit (netchannel)
    src
    version
    useDune2
    minimumOCamlVersion
    meta
    ;

  nativeBuildInputs = [
    ppx_sexp_conv
  ];

  propagatedBuildInputs = [
    lwt
    cstruct
    netchannel
    mirage-net
    mirage-xen
    io-page
    lwt-dllist
    logs
  ];
}