Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 dream, 5 pure-html, 6 ppxlib, 7}: 8 9buildDunePackage { 10 pname = "dream-html"; 11 inherit (pure-html) src version; 12 13 buildInputs = [ 14 ppxlib 15 ]; 16 17 propagatedBuildInputs = [ 18 pure-html 19 dream 20 ]; 21 22 meta = { 23 description = "Write HTML directly in your OCaml source files with editor support"; 24 license = lib.licenses.gpl3; 25 maintainers = [ lib.maintainers.naora ]; 26 }; 27}