ocamlPackages.mirage-stack: 2.2.0 → 4.0.0

This commit is contained in:
Vincent Laporte 2023-02-28 05:49:02 +00:00 committed by Vincent Laporte
parent 9550348c1a
commit 7fa20e70ea

View file

@ -1,16 +1,16 @@
{ lib, buildDunePackage, fetchurl, mirage-protocols }:
{ lib, buildDunePackage, fetchurl, tcpip }:
buildDunePackage rec {
pname = "mirage-stack";
version = "2.2.0";
useDune2 = true;
version = "4.0.0";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/mirage-stack/releases/download/v${version}/mirage-stack-v${version}.tbz";
sha256 = "1qhi0ghcj4j3hw7yqn085ac6n18b6b66z5ih3k8p79m4cvn7cdq0";
hash = "sha256-q70zGQvT5KTqvL37bZjSD8Su0P72KCUesyfWJcI8zPw=";
};
propagatedBuildInputs = [ mirage-protocols ];
propagatedBuildInputs = [ tcpip ];
meta = {
description = "MirageOS signatures for network stacks";