Files
nixpkgs/pkgs/development/ocaml-modules/dream-html/default.nix
T
2025-12-12 21:10:28 +01:00

23 lines
268 B
Nix

{
buildDunePackage,
dream,
pure-html,
ppxlib,
}:
buildDunePackage {
pname = "dream-html";
inherit (pure-html) src version meta;
minimalOCamlVersion = "5.3";
buildInputs = [
ppxlib
];
propagatedBuildInputs = [
pure-html
dream
];
}