summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-02-28 05:49:02 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2023-03-07 08:37:31 +0100
commit7fa20e70ea7e1c98e8f6ae1d90564d1d0444e4f2 (patch)
treeb092be6ce8a81fedd0f15e1b0b35bbc775060225
parent9550348c1aea20ecf2a10a4d725bc5c30c8452e3 (diff)
ocamlPackages.mirage-stack: 2.2.0 → 4.0.0
-rw-r--r--pkgs/development/ocaml-modules/mirage-stack/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/mirage-stack/default.nix b/pkgs/development/ocaml-modules/mirage-stack/default.nix
index dbcba59c4790..94a65548531f 100644
--- a/pkgs/development/ocaml-modules/mirage-stack/default.nix
+++ b/pkgs/development/ocaml-modules/mirage-stack/default.nix
@@ -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";