nixpkgs/pkgs/development/ocaml-modules/markup/default.nix

24 lines
591 B
Nix
Raw Normal View History

2020-07-15 15:56:23 +02:00
{ lib, buildDunePackage, fetchzip, uutf }:
2016-05-30 15:11:44 +02:00
2020-07-15 15:56:23 +02:00
buildDunePackage rec {
2016-12-04 11:17:42 +01:00
pname = "markup";
2020-07-15 15:56:23 +02:00
version = "0.8.2";
2016-05-30 15:11:44 +02:00
2016-12-04 11:17:42 +01:00
src = fetchzip {
url = "https://github.com/aantron/markup.ml/archive/${version}.tar.gz";
2020-07-15 15:56:23 +02:00
sha256 = "13zcrwzjmifniv3bvjbkd2ah8wwa3ld75bxh1d8hrzdvfxzh9szn";
2016-05-30 15:11:44 +02:00
};
2017-12-09 10:33:32 +01:00
propagatedBuildInputs = [ uutf ];
2016-05-30 15:11:44 +02:00
2020-07-15 15:56:23 +02:00
meta = with lib; {
homepage = "https://github.com/aantron/markup.ml/";
2016-05-30 15:11:44 +02:00
description = "A pair of best-effort parsers implementing the HTML5 and XML specifications";
2020-07-15 15:56:23 +02:00
license = licenses.mit;
2016-05-30 15:11:44 +02:00
maintainers = with maintainers; [
gal_bolle
];
};
}