Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
696 B
Nix
Raw Normal View History

{
lib,
buildDunePackage,
decoders,
jsonaf ? null,
containers,
ounit2,
}:
buildDunePackage rec {
pname = "decoders-jsonaf";
# sub-package built separately from the same source
inherit (decoders) src version;
minimalOCamlVersion = "4.11.0";
propagatedBuildInputs = [
decoders
jsonaf
];
doCheck = true;
checkInputs = [
containers
ounit2
];
meta = {
description = "Jsonaf backend for decoders";
homepage = "https://github.com/mattjbray/ocaml-decoders";
changelog = "https://github.com/mattjbray/ocaml-decoders/blob/${version}/CHANGES.md";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ infinidoge ];
};
}