Files

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

29 lines
476 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
dream,
pure-html,
ppxlib,
}:
buildDunePackage {
pname = "dream-html";
inherit (pure-html) src version;
buildInputs = [
ppxlib
];
propagatedBuildInputs = [
pure-html
dream
];
meta = {
description = "Write HTML directly in your OCaml source files with editor support";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.naora ];
broken = lib.versionAtLeast ppxlib.version "0.36";
};
}