From b13286ad0271612bcc0e7bb198da42b37bc2eaf5 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 28 Feb 2023 05:49:06 +0000 Subject: [PATCH] =?UTF-8?q?ocamlPackages.mirage-protocols:=205.0.0=20?= =?UTF-8?q?=E2=86=92=208.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ocaml-modules/mirage-protocols/default.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/mirage-protocols/default.nix b/pkgs/development/ocaml-modules/mirage-protocols/default.nix index 9f144bd2d7ee..2c80507051e5 100644 --- a/pkgs/development/ocaml-modules/mirage-protocols/default.nix +++ b/pkgs/development/ocaml-modules/mirage-protocols/default.nix @@ -1,17 +1,24 @@ -{ lib, buildDunePackage, fetchurl, duration, ipaddr, mirage-device, mirage-flow }: +{ lib +, buildDunePackage +, fetchurl +, arp +, ethernet +, ipaddr +, tcpip +}: buildDunePackage rec { pname = "mirage-protocols"; - version = "5.0.0"; + version = "8.0.0"; - useDune2 = true; + duneVersion = "3"; src = fetchurl { url = "https://github.com/mirage/mirage-protocols/releases/download/v${version}/mirage-protocols-v${version}.tbz"; - sha256 = "1bd6zgxhq2qliyzzarfvaj3ksr20ryghxq6h24i2hha7rwim63bk"; + hash = "sha256-UDCR4Jq3tw9P/Ilw7T4+3+yi9Q7VFqnHhXeSCvg9dyw="; }; - propagatedBuildInputs = [ duration ipaddr mirage-device mirage-flow ]; + propagatedBuildInputs = [ arp ethernet ipaddr tcpip ]; meta = { description = "MirageOS signatures for network protocols";