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