Files
nixpkgs/pkgs/development/ocaml-modules/base64/default.nix
2026-01-21 17:22:28 -06:00

40 lines
818 B
Nix

{
lib,
fetchurl,
buildDunePackage,
ocaml,
findlib,
alcotest,
bos,
rresult,
}:
buildDunePackage (finalAttrs: {
pname = "base64";
version = "3.5.2";
minimalOCamlVersion = "4.07";
src = fetchurl {
url = "https://github.com/mirage/ocaml-base64/releases/download/v${finalAttrs.version}/base64-${finalAttrs.version}.tbz";
hash = "sha256-s/XOMBqnLHAy75C+IzLXL/OWKSLADuKuxryt4Yei9Zs=";
};
nativeBuildInputs = [ findlib ];
# otherwise fmt breaks evaluation
doCheck = lib.versionAtLeast ocaml.version "4.08";
checkInputs = [
alcotest
bos
rresult
];
meta = {
homepage = "https://github.com/mirage/ocaml-base64";
description = "Base64 encoding and decoding in OCaml";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ vbgl ];
};
})