about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-01-28 04:20:00 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2024-01-29 13:07:40 +0100
commitec79a038c4d4077261cc9fcdb07d3bcdeef59670 (patch)
treebc1aed9d19b7a6616191eff2edb94aee9d21ab02 /pkgs/development/ocaml-modules
parent5d34f071b571e51af419889b257339d520109c98 (diff)
downloadnixlib-ec79a038c4d4077261cc9fcdb07d3bcdeef59670.tar
nixlib-ec79a038c4d4077261cc9fcdb07d3bcdeef59670.tar.gz
nixlib-ec79a038c4d4077261cc9fcdb07d3bcdeef59670.tar.bz2
nixlib-ec79a038c4d4077261cc9fcdb07d3bcdeef59670.tar.lz
nixlib-ec79a038c4d4077261cc9fcdb07d3bcdeef59670.tar.xz
nixlib-ec79a038c4d4077261cc9fcdb07d3bcdeef59670.tar.zst
nixlib-ec79a038c4d4077261cc9fcdb07d3bcdeef59670.zip
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
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/riot/default.nix20
1 files changed, 13 insertions, 7 deletions
diff --git a/pkgs/development/ocaml-modules/riot/default.nix b/pkgs/development/ocaml-modules/riot/default.nix
index e830e7034e10..81d1a48773ea 100644
--- a/pkgs/development/ocaml-modules/riot/default.nix
+++ b/pkgs/development/ocaml-modules/riot/default.nix
@@ -1,8 +1,9 @@
 { lib
-, bigstringaf
 , buildDunePackage
+, cstruct
 , fetchurl
-, iomux
+, mdx
+, poll
 , ptime
 , telemetry
 , uri
@@ -10,24 +11,29 @@
 
 buildDunePackage rec {
   pname = "riot";
-  version = "0.0.5";
+  version = "0.0.7";
 
   minimalOCamlVersion = "5.1";
 
   src = fetchurl {
     url = "https://github.com/leostera/riot/releases/download/${version}/riot-${version}.tbz";
-    hash = "sha256-Abe4LMxlaxK3MVlg2d8X60aCuPGvaOn+4zFx/uH5z4g=";
+    hash = "sha256-t+PMBh4rZXi82dUljv3nLzZX5o1iagBbQ9FfGnr/dp4=";
   };
 
   propagatedBuildInputs = [
-    bigstringaf
-    iomux
+    cstruct
+    poll
     ptime
     telemetry
     uri
   ];
 
-  doCheck = true;
+  checkInputs = [
+    mdx
+    mdx.bin
+  ];
+
+  doCheck = false; # fails on sandbox
 
   meta = {
     description = "An actor-model multi-core scheduler for OCaml 5";