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