mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
67 lines
1.2 KiB
Nix
67 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildDunePackage
|
|
, fetchurl
|
|
, cstruct
|
|
, duration
|
|
, ethernet
|
|
, ipaddr
|
|
, logs
|
|
, lwt
|
|
, macaddr
|
|
, mirage-time
|
|
, alcotest
|
|
, mirage-clock-unix
|
|
, mirage-flow
|
|
, mirage-random
|
|
, mirage-random-test
|
|
, mirage-time-unix
|
|
, mirage-vnetif
|
|
, bisect_ppx
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "arp";
|
|
version = "3.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-${version}.tbz";
|
|
hash = "sha256-6jPFiene6jAPtivCugtVfP3+6k9A5gBoWzpoxoaPBvE=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
nativeBuildInputs = [
|
|
bisect_ppx
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
cstruct
|
|
duration
|
|
ethernet
|
|
ipaddr
|
|
logs
|
|
lwt
|
|
macaddr
|
|
mirage-time
|
|
];
|
|
|
|
## NOTE: As of 18 april 2023 and ARP version 3.0.0, tests fail on Darwin.
|
|
doCheck = ! stdenv.isDarwin;
|
|
checkInputs = [
|
|
alcotest
|
|
mirage-clock-unix
|
|
mirage-flow
|
|
mirage-random
|
|
mirage-random-test
|
|
mirage-time-unix
|
|
mirage-vnetif
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Address Resolution Protocol purely in OCaml";
|
|
homepage = "https://github.com/mirage/arp";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ sternenseemann ];
|
|
};
|
|
}
|