ocamlPackages.posix: 2.0.0 → 2.0.2

This commit is contained in:
Vincent Laporte 2023-03-31 07:14:09 +02:00
parent 9f691a92db
commit 7a9da552fb
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
4 changed files with 12 additions and 6 deletions

View File

@ -4,16 +4,17 @@
buildDunePackage rec {
pname = "posix-base";
version = "2.0.0";
version = "2.0.2";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-posix";
rev = "v${version}";
sha256 = "18px8hfqcfy2lk8105ki3hrxxigs44gs046ba0fqda6wzd0hr82b";
hash = "sha256-xxNaPJZdcW+KnT7rYUuC7ZgmHtXTppZG2BOmpKweC/U=";
};
useDune2 = true;
duneVersion = "3";
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ ctypes integers ];

View File

@ -3,7 +3,9 @@
buildDunePackage {
pname = "posix-socket";
inherit (posix-base) version src useDune2;
inherit (posix-base) version src;
duneVersion = "3";
propagatedBuildInputs = [ posix-base ];

View File

@ -5,6 +5,8 @@ buildDunePackage {
inherit (posix-base) version src;
duneVersion = "3";
propagatedBuildInputs = [ posix-base posix-types unix-errno ];
doCheck = true;

View File

@ -3,9 +3,10 @@
buildDunePackage {
pname = "posix-types";
inherit (posix-base) version src useDune2;
inherit (posix-base) version src;
minimumOCamlVersion = "4.03";
minimalOCamlVersion = "4.03";
duneVersion = "3";
propagatedBuildInputs = [ posix-base ];