mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
ocamlPackages.mirage-sleep: init at 4.0.0
This commit is contained in:
parent
93a18509f3
commit
e81e75f86e
2 changed files with 33 additions and 0 deletions
31
pkgs/development/ocaml-modules/mirage-sleep/default.nix
Normal file
31
pkgs/development/ocaml-modules/mirage-sleep/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue