ocamlPackages.posix-types: init at 2.0.0

wip/yesman
Vincent Laporte 4 years ago committed by Vincent Laporte
parent 83122f9657
commit 6a01a4e69a
  1. 15
      pkgs/development/ocaml-modules/posix/types.nix
  2. 2
      pkgs/top-level/ocaml-packages.nix

@ -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>";
};
}

@ -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 { };

Loading…
Cancel
Save