ocamlPackages.posix-types: init at 2.0.0

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

View file

@ -0,0 +1,15 @@
{ lib, buildDunePackage, posix-base }:
buildDunePackage {
pname = "posix-types";
inherit (posix-base) version src useDune2;
minimumOCamlVersion = "4.03";
propagatedBuildInputs = [ posix-base ];
meta = posix-base.meta // {
description = "Bindings for the types defined in <sys/types.h>";
};
}

View file

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