ocamlPackages.posix-types: init at 2.0.0
This commit is contained in:
parent
83122f9657
commit
6a01a4e69a
|
@ -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-socket = callPackage ../development/ocaml-modules/posix/socket.nix { };
|
||||||
|
|
||||||
|
posix-types = callPackage ../development/ocaml-modules/posix/types.nix { };
|
||||||
|
|
||||||
ppxfind = callPackage ../development/ocaml-modules/ppxfind { };
|
ppxfind = callPackage ../development/ocaml-modules/ppxfind { };
|
||||||
|
|
||||||
ppxlib = callPackage ../development/ocaml-modules/ppxlib { };
|
ppxlib = callPackage ../development/ocaml-modules/ppxlib { };
|
||||||
|
|
Loading…
Reference in New Issue