forked from mirrors/nixpkgs
ocamlPackages.posix-socket: init at 2.0.0
This commit is contained in:
parent
b1f2a30191
commit
83122f9657
16
pkgs/development/ocaml-modules/posix/socket.nix
Normal file
16
pkgs/development/ocaml-modules/posix/socket.nix
Normal 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";
|
||||
};
|
||||
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue