Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
807 B
Nix
41 lines
807 B
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
buildDunePackage,
|
|
ocaml,
|
|
findlib,
|
|
alcotest,
|
|
bos,
|
|
rresult,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "base64";
|
|
version = "3.5.1";
|
|
|
|
minimalOCamlVersion = "4.03";
|
|
duneVersion = "3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/ocaml-base64/releases/download/v${version}/base64-${version}.tbz";
|
|
hash = "sha256-2P7apZvRL+rnrMCLWSjdR4qsUj9MqNJARw0lAGUcZe0=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|