ocamlPackages.arp: 2.3.1 -> 2.3.2

authored by superherointj and committed by sterni bbfe4e6a 1fe82746

+14 -16
+14 -16
pkgs/development/ocaml-modules/arp/default.nix
··· 8 8 9 9 buildDunePackage rec { 10 10 pname = "arp"; 11 - version = "2.3.1"; 12 - 13 - minimumOCamlVersion = "4.06"; 14 - 15 - useDune2 = true; 11 + version = "2.3.2"; 16 12 17 13 src = fetchurl { 18 14 url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; 19 - sha256 = "1nzm3fbkvz702g8f60fs49736lpffwchy64i1l1raxm9b4lmdk3p"; 15 + sha256 = "1s09ibj9v6pp2ckn96wxmn3mjifcj97asls5xc4zg75pflk0grgz"; 20 16 }; 21 17 18 + minimumOCamlVersion = "4.06"; 19 + useDune2 = true; 20 + 22 21 nativeBuildInputs = [ 23 22 bisect_ppx 24 23 ]; 25 24 26 25 propagatedBuildInputs = [ 27 26 cstruct 27 + duration 28 28 ipaddr 29 - macaddr 30 29 logs 31 - mirage-time 32 - mirage-protocols 33 30 lwt 34 - duration 31 + macaddr 35 32 mirage-profile 33 + mirage-protocols 34 + mirage-time 36 35 ]; 37 36 38 37 doCheck = true; 39 38 checkInputs = [ 40 39 alcotest 40 + ethernet 41 + mirage-clock-unix 41 42 mirage-profile 42 43 mirage-random 43 44 mirage-random-test 45 + mirage-time-unix 44 46 mirage-vnetif 45 - mirage-clock-unix 46 - mirage-random 47 - mirage-time-unix 48 - ethernet 49 47 ]; 50 48 51 49 meta = with lib; { 52 50 description = "Address Resolution Protocol purely in OCaml"; 51 + homepage = "https://github.com/mirage/arp"; 53 52 license = licenses.isc; 54 - homepage = "https://github.com/mirage/arp"; 55 - maintainers = [ maintainers.sternenseemann ]; 53 + maintainers = with maintainers; [ sternenseemann ]; 56 54 }; 57 55 }