Commit 9550348c authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.{arp,ethernet,tcpip}: some cleaning

parent ff951cd1
Loading
Loading
Loading
Loading
+20 −7
Original line number Diff line number Diff line
{ lib, buildDunePackage, fetchurl
, cstruct, ipaddr, macaddr, logs, lwt, duration
, mirage-time, mirage-protocols, mirage-profile
, alcotest, ethernet, fmt, mirage-vnetif, mirage-random
, mirage-random-test, mirage-clock-unix, mirage-time-unix
{ lib
, buildDunePackage
, fetchurl
, cstruct
, duration
, ethernet
, ipaddr
, logs
, lwt
, macaddr
, mirage-profile
, mirage-time
, alcotest
, mirage-clock-unix
, mirage-flow
, mirage-random
, mirage-random-test
, mirage-time-unix
, mirage-vnetif
, bisect_ppx
}:

@@ -31,7 +45,6 @@ buildDunePackage rec {
    lwt
    macaddr
    mirage-profile
    mirage-protocols
    mirage-time
  ];

@@ -39,7 +52,7 @@ buildDunePackage rec {
  checkInputs = [
    alcotest
    mirage-clock-unix
    mirage-profile
    mirage-flow
    mirage-random
    mirage-random-test
    mirage-time-unix
+13 −10
Original line number Diff line number Diff line
{ lib, buildDunePackage, fetchurl
, rresult, cstruct, ppx_cstruct, mirage-net, mirage-protocols
, mirage-profile, macaddr, fmt, lwt, logs
{ lib
, buildDunePackage
, fetchurl
, cstruct
, logs
, lwt
, macaddr
, mirage-net
, mirage-profile
, ppx_cstruct
}:

buildDunePackage rec {
  pname = "ethernet";
  version = "3.0.0";

  minimumOCamlVersion = "4.08";
  minimalOCamlVersion = "4.08";

  # necessary due to cstruct
  useDune2 = true;
  duneVersion = "3";

  src = fetchurl {
    url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
    sha256 = "0a898vp9dw42majsvzzvs8pc6x4ns01wlwhwbacixliv6vv78ng9";
    hash = "sha256:0a898vp9dw42majsvzzvs8pc6x4ns01wlwhwbacixliv6vv78ng9";
  };

  buildInputs = [
@@ -22,13 +28,10 @@ buildDunePackage rec {
  ];

  propagatedBuildInputs = [
    rresult
    cstruct
    mirage-net
    mirage-protocols
    macaddr
    mirage-profile
    fmt
    lwt
    logs
  ];
+7 −10
Original line number Diff line number Diff line
{ lib, buildDunePackage, fetchurl
, bisect_ppx, ppx_cstruct, pkg-config
, rresult, cstruct, cstruct-lwt, mirage-net, mirage-clock
, mirage-random, mirage-stack, mirage-protocols, mirage-time
, ppx_cstruct, pkg-config
, cstruct, cstruct-lwt, mirage-net, mirage-clock
, mirage-random, mirage-time
, ipaddr, macaddr, macaddr-cstruct, mirage-profile, fmt
, lwt, lwt-dllist, logs, duration, randomconv, ethernet
, alcotest, mirage-flow, mirage-vnetif, pcap-format
@@ -19,7 +19,7 @@ buildDunePackage rec {

  src = fetchurl {
    url = "https://github.com/mirage/mirage-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
    sha256 = "sha256-lraur6NfFD9yddG+y21jlHKt82gLgYBBbedltlgcRm0=";
    hash = "sha256-lraur6NfFD9yddG+y21jlHKt82gLgYBBbedltlgcRm0=";
  };

  nativeBuildInputs = [
@@ -27,17 +27,12 @@ buildDunePackage rec {
  ];

  propagatedBuildInputs = [
    bisect_ppx
    ppx_cstruct
    rresult
    cstruct
    cstruct-lwt
    mirage-net
    mirage-clock
    mirage-random
    mirage-random-test
    mirage-stack
    mirage-protocols
    mirage-time
    ipaddr
    macaddr
@@ -53,13 +48,15 @@ buildDunePackage rec {
    lru
    metrics
    arp
    mirage-flow
  ] ++ lib.optionals withFreestanding [
    ocaml-freestanding
  ];

  doCheck = false;
  doCheck = true;
  checkInputs = [
    alcotest
    mirage-random-test
    mirage-flow
    mirage-vnetif
    pcap-format