aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/markup/default.nix
blob: 8b3525d263454b39cfd3d32b40b256627bb53735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildDunePackage, fetchzip, uutf }:

buildDunePackage rec {
  pname = "markup";
  version = "0.8.2";

  src = fetchzip {
    url = "https://github.com/aantron/markup.ml/archive/${version}.tar.gz";
    sha256 = "13zcrwzjmifniv3bvjbkd2ah8wwa3ld75bxh1d8hrzdvfxzh9szn";
    };

  propagatedBuildInputs = [ uutf ];

  meta = with lib; {
    homepage = "https://github.com/aantron/markup.ml/";
    description = "A pair of best-effort parsers implementing the HTML5 and XML specifications";
    license = licenses.mit;
    maintainers = with maintainers; [
      gal_bolle
      ];
  };

}