ocamlPackages.posix-socket: init at 2.0.0

This commit is contained in:
Vincent Laporte 2020-08-24 07:48:11 +02:00 committed by Vincent Laporte
parent b1f2a30191
commit 83122f9657
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ lib, buildDunePackage, posix-base }:
buildDunePackage {
pname = "posix-socket";
inherit (posix-base) version src useDune2;
propagatedBuildInputs = [ posix-base ];
doCheck = true;
meta = posix-base.meta // {
description = "Bindings for posix sockets";
};
}

View file

@ -756,6 +756,8 @@ let
posix-base = callPackage ../development/ocaml-modules/posix/base.nix { };
posix-socket = callPackage ../development/ocaml-modules/posix/socket.nix { };
ppxfind = callPackage ../development/ocaml-modules/ppxfind { };
ppxlib = callPackage ../development/ocaml-modules/ppxlib { };