nixpkgs/pkgs/development/ocaml-modules/decoders-ezxmlm/default.nix
Infinidoge 9189f0318d ocamlPackages.decoders: init at 1.0.0
Since all decoders-* packages are part of the base decoders package
source, and the versions are all tied together, they are added as a
single commit

(cherry picked from commit 5416aaae9d)
2025-06-08 10:02:11 +00:00

34 lines
668 B
Nix

{
lib,
buildDunePackage,
decoders,
ezxmlm,
containers,
}:
buildDunePackage rec {
pname = "decoders-ezxmlm";
# sub-package built separately from the same source
inherit (decoders) src version;
minimalOCamlVersion = "4.03.0";
propagatedBuildInputs = [
decoders
ezxmlm
];
doCheck = true;
checkInputs = [
containers
];
meta = {
description = "Ezxmlm 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 ];
};
}