summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/htmlit/default.nix
blob: 92b11fb7ff6e98bbb6968c7eb13a514c4bc8e03a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  fetchurl,
  buildTopkgPackage,
}:

buildTopkgPackage rec {
  pname = "htmlit";
  version = "0.2.0";

  minimalOCamlVersion = "4.14.0";

  src = fetchurl {
    url = "https://erratique.ch/software/htmlit/releases/htmlit-${version}.tbz";
    hash = "sha256-i+7gYle8G2y78GeoAnlNY5dpdONLhltuswusCbMmB/c=";
  };

  meta = {
    description = "HTML generation combinators for OCaml";
    homepage = "https://erratique.ch/software/htmlit";
    license = lib.licenses.isc;
    maintainers = with lib.maintainers; [ redianthus ];
  };
}