ocamlPackages.cbor: init at 0.5

(cherry picked from commit 7baddbc4fd)
This commit is contained in:
Infinidoge 2025-05-21 20:26:30 -04:00 committed by github-actions[bot]
parent 6a8d437617
commit 9672382799
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{
lib,
buildDunePackage,
fetchurl,
ocplib-endian,
yojson,
}:
buildDunePackage rec {
pname = "cbor";
version = "0.5";
minimalOCamlVersion = "4.07.0";
src = fetchurl {
url = "https://github.com/ygrek/ocaml-cbor/releases/download/${version}/ocaml-cbor-${version}.tar.gz";
hash = "sha256-4mpm/fv9X5uFRQO8XqBhOpxYwZreEtJ3exIwN6YulKM=";
};
propagatedBuildInputs = [
ocplib-endian
];
doCheck = true;
checkInputs = [
yojson
];
meta = {
description = "CBOR encoder/decoder (RFC 7049) - native OCaml implementation";
homepage = "https://github.com/ygrek/ocaml-cbor";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ infinidoge ];
};
}

View file

@ -202,6 +202,8 @@ let
git-binary = pkgs.git;
};
cbor = callPackage ../development/ocaml-modules/cbor { };
cfstream = callPackage ../development/ocaml-modules/cfstream { };
chacha = callPackage ../development/ocaml-modules/chacha { };