3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/arp/default.nix

56 lines
1.2 KiB
Nix
Raw Normal View History

2020-12-29 22:44:46 +00:00
{ 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
, bisect_ppx
}:
buildDunePackage rec {
pname = "arp";
2021-06-06 02:07:07 +01:00
version = "2.3.2";
2020-12-29 22:44:46 +00:00
src = fetchurl {
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
2021-06-06 02:07:07 +01:00
sha256 = "1s09ibj9v6pp2ckn96wxmn3mjifcj97asls5xc4zg75pflk0grgz";
2020-12-29 22:44:46 +00:00
};
2021-06-06 02:07:07 +01:00
minimumOCamlVersion = "4.06";
useDune2 = true;
2020-12-29 22:44:46 +00:00
nativeBuildInputs = [
bisect_ppx
];
propagatedBuildInputs = [
cstruct
2021-06-06 02:07:07 +01:00
duration
2020-12-29 22:44:46 +00:00
ipaddr
logs
lwt
2021-06-06 02:07:07 +01:00
macaddr
2020-12-29 22:44:46 +00:00
mirage-profile
2021-06-06 02:07:07 +01:00
mirage-protocols
mirage-time
2020-12-29 22:44:46 +00:00
];
doCheck = true;
checkInputs = [
alcotest
2021-06-06 02:07:07 +01:00
ethernet
mirage-clock-unix
2020-12-29 22:44:46 +00:00
mirage-profile
mirage-random
mirage-random-test
mirage-time-unix
2021-06-06 02:07:07 +01:00
mirage-vnetif
2020-12-29 22:44:46 +00:00
];
meta = with lib; {
description = "Address Resolution Protocol purely in OCaml";
homepage = "https://github.com/mirage/arp";
2021-06-06 02:07:07 +01:00
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
2020-12-29 22:44:46 +00:00
};
}