ocamlPackages.riot: 0.0.5 -> 0.0.7

Diff: https://github.com/leostera/riot/compare/None...0.0.7

Changelog: https://github.com/leostera/riot/blob/0.0.7/CHANGES.md

authored by Mario Rodas and committed by Vincent Laporte ec79a038 5d34f071

+13 -7
+13 -7
pkgs/development/ocaml-modules/riot/default.nix
··· 1 1 { lib 2 - , bigstringaf 3 2 , buildDunePackage 3 + , cstruct 4 4 , fetchurl 5 - , iomux 5 + , mdx 6 + , poll 6 7 , ptime 7 8 , telemetry 8 9 , uri ··· 10 11 11 12 buildDunePackage rec { 12 13 pname = "riot"; 13 - version = "0.0.5"; 14 + version = "0.0.7"; 14 15 15 16 minimalOCamlVersion = "5.1"; 16 17 17 18 src = fetchurl { 18 19 url = "https://github.com/leostera/riot/releases/download/${version}/riot-${version}.tbz"; 19 - hash = "sha256-Abe4LMxlaxK3MVlg2d8X60aCuPGvaOn+4zFx/uH5z4g="; 20 + hash = "sha256-t+PMBh4rZXi82dUljv3nLzZX5o1iagBbQ9FfGnr/dp4="; 20 21 }; 21 22 22 23 propagatedBuildInputs = [ 23 - bigstringaf 24 - iomux 24 + cstruct 25 + poll 25 26 ptime 26 27 telemetry 27 28 uri 28 29 ]; 29 30 30 - doCheck = true; 31 + checkInputs = [ 32 + mdx 33 + mdx.bin 34 + ]; 35 + 36 + doCheck = false; # fails on sandbox 31 37 32 38 meta = { 33 39 description = "An actor-model multi-core scheduler for OCaml 5";