2021-01-05 17:05:55 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl
|
|
|
|
, rresult, cstruct, ppx_cstruct, mirage-net, mirage-protocols
|
|
|
|
, mirage-profile, macaddr, fmt, lwt, logs
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "ethernet";
|
2022-01-25 03:21:06 +00:00
|
|
|
version = "3.0.0";
|
2021-01-05 17:05:55 +00:00
|
|
|
|
2022-01-25 03:21:06 +00:00
|
|
|
minimumOCamlVersion = "4.08";
|
2021-01-05 17:05:55 +00:00
|
|
|
|
|
|
|
# necessary due to cstruct
|
|
|
|
useDune2 = true;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
|
2022-01-25 03:21:06 +00:00
|
|
|
sha256 = "0a898vp9dw42majsvzzvs8pc6x4ns01wlwhwbacixliv6vv78ng9";
|
2021-01-05 17:05:55 +00:00
|
|
|
};
|
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
buildInputs = [
|
2021-01-05 17:05:55 +00:00
|
|
|
ppx_cstruct
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
rresult
|
|
|
|
cstruct
|
|
|
|
mirage-net
|
|
|
|
mirage-protocols
|
|
|
|
macaddr
|
|
|
|
mirage-profile
|
|
|
|
fmt
|
|
|
|
lwt
|
|
|
|
logs
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "OCaml Ethernet (IEEE 802.3) layer, used in MirageOS";
|
|
|
|
homepage = "https://github.com/mirage/ethernet";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|