lol

ocamlPackages.mirage-block: 3.0.0 → 3.0.2

+9 -5
+4 -2
pkgs/development/ocaml-modules/mirage-block/combinators.nix
··· 1 - { buildDunePackage, mirage-block, io-page, logs }: 1 + { buildDunePackage, mirage-block, logs }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "mirage-block-combinators"; 5 5 inherit (mirage-block) version src; 6 6 7 - propagatedBuildInputs = [ mirage-block io-page logs ]; 7 + duneVersion = "3"; 8 + 9 + propagatedBuildInputs = [ mirage-block logs ]; 8 10 9 11 meta = mirage-block.meta // { 10 12 description = "Block signatures and implementations for MirageOS using Lwt";
+5 -3
pkgs/development/ocaml-modules/mirage-block/default.nix
··· 4 4 5 5 buildDunePackage rec { 6 6 pname = "mirage-block"; 7 - version = "3.0.0"; 7 + version = "3.0.2"; 8 + 9 + duneVersion = "3"; 8 10 9 11 src = fetchurl { 10 - url = "https://github.com/mirage/mirage-block/releases/download/v${version}/mirage-block-v${version}.tbz"; 11 - sha256 = "sha256-NB5nJpppMtdi0HDjKcCAqRjO4vIbAMfnP934P+SnzmU="; 12 + url = "https://github.com/mirage/mirage-block/releases/download/v${version}/mirage-block-${version}.tbz"; 13 + hash = "sha256-UALUfeL0G1mfSsLgAb/HpQ6OV12YtY+GUOYG6yhUwAI="; 12 14 }; 13 15 14 16 propagatedBuildInputs = [ cstruct lwt fmt ];