ocamlPackages.posix-socket: init at 2.0.0

This commit is contained in:
Vincent Laporte
2020-08-31 07:07:08 +02:00
committed by Vincent Laporte
parent b1f2a30191
commit 83122f9657
2 changed files with 18 additions and 0 deletions
@@ -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";
};
}