depot/third_party/nixpkgs/pkgs/development/ocaml-modules/riot/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

43 lines
845 B
Nix

{ lib
, buildDunePackage
, fetchurl
, mirage-crypto-rng
, mtime
, gluon
, randomconv
, rio
, telemetry
, tls
}:
buildDunePackage rec {
pname = "riot";
version = "0.0.8";
minimalOCamlVersion = "5.1";
src = fetchurl {
url = "https://github.com/leostera/riot/releases/download/${version}/riot-${version}.tbz";
hash = "sha256-SsiDz53b9bMIT9Q3IwDdB3WKy98WSd9fiieU41qZpeE=";
};
propagatedBuildInputs = [
gluon
mirage-crypto-rng
mtime
randomconv
rio
telemetry
tls
];
doCheck = false; # fails on sandbox
meta = {
description = "Actor-model multi-core scheduler for OCaml 5";
homepage = "https://github.com/leostera/riot";
changelog = "https://github.com/leostera/riot/blob/${version}/CHANGES.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
};
}