ocamlPackages.mirage-sleep: init at 4.0.0

This commit is contained in:
Vincent Laporte 2025-02-27 08:48:09 +01:00
parent 93a18509f3
commit e81e75f86e
No known key found for this signature in database
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{
lib,
buildDunePackage,
fetchurl,
lwt,
duration,
version ? "4.0.0",
}:
buildDunePackage {
inherit version;
pname = "mirage-sleep";
src = fetchurl {
url = "https://github.com/mirage/mirage-sleep/releases/download/v${version}/mirage-sleep-${version}.tbz";
hash = "sha256-J7cw7sE3EE3BIhSdwD1KV3VeXjEqviVmys3LgGhEE/A=";
};
propagatedBuildInputs = [
duration
lwt
];
meta = {
description = "Sleep operations for MirageOS";
homepage = "https://github.com/mirage/mirage-sleep";
changelog = "https://raw.githubusercontent.com/mirage/mirage-sleep/refs/tags/v${version}/CHANGES.md";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -1224,6 +1224,8 @@ let
mirage-runtime = callPackage ../development/ocaml-modules/mirage/runtime.nix { };
mirage-sleep = callPackage ../development/ocaml-modules/mirage-sleep { };
mirage-time = callPackage ../development/ocaml-modules/mirage-time { };
mirage-time-unix = callPackage ../development/ocaml-modules/mirage-time/unix.nix { };