ocamlPackages.cstruct: 6.1.1 → 6.2.0

This commit is contained in:
Vincent Laporte 2023-03-28 08:58:02 +02:00
parent 6134a755da
commit cb68c76b8e
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
6 changed files with 9 additions and 2 deletions

View file

@ -4,6 +4,8 @@ buildDunePackage rec {
pname = "cstruct-async";
inherit (cstruct) src version meta;
duneVersion = "3";
propagatedBuildInputs = [
async_unix
async

View file

@ -2,13 +2,14 @@
buildDunePackage rec {
pname = "cstruct";
version = "6.1.1";
version = "6.2.0";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/mirage/ocaml-cstruct/releases/download/v${version}/cstruct-${version}.tbz";
sha256 = "sha256-G3T5hw9qfuYAiSRZBxbdUzpyijyhC7GNqf6ovkZ/UY0=";
hash = "sha256-mngHM5JYDoNJFI+jq0sbLpidydMNB0AbBMlrfGDwPmI=";
};
buildInputs = [ fmt ];

View file

@ -9,6 +9,7 @@ else
inherit (cstruct) version src meta;
minimalOCamlVersion = "4.08";
duneVersion = "3";
propagatedBuildInputs = [ cstruct lwt ];
}

View file

@ -11,6 +11,7 @@ else
inherit (cstruct) version src meta;
minimalOCamlVersion = "4.08";
duneVersion = "3";
propagatedBuildInputs = [ cstruct ppxlib sexplib stdlib-shims ];

View file

@ -9,6 +9,7 @@ buildDunePackage rec {
inherit (cstruct) version src meta;
minimalOCamlVersion = "4.08";
duneVersion = "3";
doCheck = true;
checkInputs = [ alcotest ];

View file

@ -9,6 +9,7 @@ else
inherit (cstruct) version src meta;
minimalOCamlVersion = "4.08";
duneVersion = "3";
propagatedBuildInputs = [ cstruct ];
}