about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mirage-xen/default.nix
blob: 0d53d0f9c3b771d39daafe3edc30d3735330a445 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{ lib
, buildDunePackage
, fetchurl
, pkg-config
, cstruct
, lwt
, shared-memory-ring-lwt
, xenstore
, lwt-dllist
, mirage-profile
, mirage-runtime
, logs
, fmt
, ocaml-freestanding
, bheap
, duration
, io-page
}:

buildDunePackage rec {
  pname = "mirage-xen";
  version = "6.0.0";

  useDune2 = true;

  src = fetchurl {
    url = "https://github.com/mirage/mirage-xen/releases/download/v${version}/mirage-xen-v${version}.tbz";
    sha256 = "f991e972059b27993c287ad010d9281fee061efaa1dd475d0955179f93710fbd";
  };

  patches = [
    ./makefile-no-opam.patch
    ./pkg-config.patch
  ];

  # can't handle OCAMLFIND_DESTDIR with substituteAll
  postPatch = ''
    substituteInPlace lib/bindings/mirage-xen.pc \
      --replace "@out@" "$out" \
      --replace "@OCAMLFIND_DESTDIR@" "$OCAMLFIND_DESTDIR"
  '';

  minimumOCamlVersion = "4.08";

  nativeBuildInputs = [
    pkg-config
  ];

  propagatedBuildInputs = [
    cstruct
    lwt
    shared-memory-ring-lwt
    xenstore
    lwt-dllist
    mirage-profile
    mirage-runtime
    io-page
    logs
    fmt
    bheap
    duration
    (ocaml-freestanding.override { target = "xen"; })
  ];

  # Move pkg-config files into their well-known location.
  # This saves us an extra setup hook and causes no issues
  # since we patch all relative paths out of the .pc file.
  postInstall = ''
    mv $OCAMLFIND_DESTDIR/pkgconfig $out/lib/pkgconfig
  '';

  meta = with lib; {
    description = "Xen core platform libraries for MirageOS";
    license = licenses.isc;
    maintainers = [ maintainers.sternenseemann ];
    homepage = "https://github.com/mirage/mirage-xen";
  };
}