ocamlPackages.mirage-channel: init at 4.0.1
This commit is contained in:
parent
2730e02a90
commit
8bf29a6014
28
pkgs/development/ocaml-modules/mirage-channel/default.nix
Normal file
28
pkgs/development/ocaml-modules/mirage-channel/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib, fetchurl, buildDunePackage
|
||||
, cstruct, logs, lwt, mirage-flow
|
||||
, alcotest, mirage-flow-combinators
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "mirage-channel";
|
||||
version = "4.0.1";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mirage/mirage-channel/releases/download/v${version}/mirage-channel-v${version}.tbz";
|
||||
sha256 = "0wmb2zhiyp8n78xgcspcsyd19bhcml3kyli2caw3778wc1gyvfpc";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ cstruct logs lwt mirage-flow ];
|
||||
|
||||
doCheck = true;
|
||||
checkInputs = [ alcotest mirage-flow-combinators ];
|
||||
|
||||
meta = {
|
||||
description = "Buffered channels for MirageOS FLOW types";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
homepage = "https://github.com/mirage/mirage-channel";
|
||||
};
|
||||
}
|
@ -543,6 +543,8 @@ let
|
||||
|
||||
mirage-bootvar-unix = callPackage ../development/ocaml-modules/mirage-bootvar-unix { };
|
||||
|
||||
mirage-channel = callPackage ../development/ocaml-modules/mirage-channel { };
|
||||
|
||||
mirage-clock = callPackage ../development/ocaml-modules/mirage-clock { };
|
||||
|
||||
mirage-clock-unix = callPackage ../development/ocaml-modules/mirage-clock/unix.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user