ocamlPackages.mirage-block: 3.0.0 → 3.0.2

This commit is contained in:
Vincent Laporte 2023-03-25 11:20:35 +01:00
parent bec9dd54c6
commit 01f457d328
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 9 additions and 5 deletions

@ -1,10 +1,12 @@
{ buildDunePackage, mirage-block, io-page, logs }:
{ buildDunePackage, mirage-block, logs }:
buildDunePackage rec {
pname = "mirage-block-combinators";
inherit (mirage-block) version src;
propagatedBuildInputs = [ mirage-block io-page logs ];
duneVersion = "3";
propagatedBuildInputs = [ mirage-block logs ];
meta = mirage-block.meta // {
description = "Block signatures and implementations for MirageOS using Lwt";

@ -4,11 +4,13 @@
buildDunePackage rec {
pname = "mirage-block";
version = "3.0.0";
version = "3.0.2";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/mirage-block/releases/download/v${version}/mirage-block-v${version}.tbz";
sha256 = "sha256-NB5nJpppMtdi0HDjKcCAqRjO4vIbAMfnP934P+SnzmU=";
url = "https://github.com/mirage/mirage-block/releases/download/v${version}/mirage-block-${version}.tbz";
hash = "sha256-UALUfeL0G1mfSsLgAb/HpQ6OV12YtY+GUOYG6yhUwAI=";
};
propagatedBuildInputs = [ cstruct lwt fmt ];