ocamlPackages.iomux: init at 0.3
This commit is contained in:
parent
8201afb77f
commit
bf7e951996
34
pkgs/development/ocaml-modules/iomux/default.nix
Normal file
34
pkgs/development/ocaml-modules/iomux/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ lib
|
||||
, fetchurl
|
||||
, buildDunePackage
|
||||
, dune-configurator
|
||||
, alcotest
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "iomux";
|
||||
version = "0.3";
|
||||
|
||||
minimalOCamlVersion = "4.08";
|
||||
duneVersion = "3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/haesbaert/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
|
||||
sha256 = "zNJ3vVOv0BEpHLiC8Y610F87uiMlfYNo28ej0H+EU+c=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
dune-configurator
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
alcotest
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/haesbaert/ocaml-${pname}";
|
||||
description = "IO Multiplexers for OCaml";
|
||||
license = with lib.licenses; [ isc ];
|
||||
maintainers = with lib.maintainers; [ toastal ];
|
||||
};
|
||||
}
|
@ -663,6 +663,8 @@ let
|
||||
|
||||
integers_stubs_js = callPackage ../development/ocaml-modules/integers_stubs_js { };
|
||||
|
||||
iomux = callPackage ../development/ocaml-modules/iomux { };
|
||||
|
||||
io-page = callPackage ../development/ocaml-modules/io-page { };
|
||||
|
||||
ipaddr = callPackage ../development/ocaml-modules/ipaddr { };
|
||||
|
Loading…
Reference in New Issue
Block a user