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