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

27 lines
707 B
Nix
Raw Normal View History

2020-12-06 16:09:25 +00:00
{ lib, buildDunePackage, fetchzip, ocaml, uchar, uutf, ounit2 }:
2016-05-30 13:11:44 +00:00
2020-07-15 13:56:23 +00:00
buildDunePackage rec {
2016-12-04 10:17:42 +00:00
pname = "markup";
2020-12-06 16:09:25 +00:00
version = "1.0.0";
useDune2 = true;
2016-05-30 13:11:44 +00:00
2016-12-04 10:17:42 +00:00
src = fetchzip {
url = "https://github.com/aantron/markup.ml/archive/${version}.tar.gz";
2020-12-06 16:09:25 +00:00
sha256 = "09hkrf9pw6hpb9j06p5bddklpnjwdjpqza3bx2179l970yl67an9";
};
propagatedBuildInputs = [ uchar uutf ];
2016-05-30 13:11:44 +00:00
2020-12-06 16:09:25 +00:00
checkInputs = [ ounit2 ];
doCheck = lib.versionAtLeast ocaml.version "4.04";
2016-05-30 13:11:44 +00:00
2020-07-15 13:56:23 +00:00
meta = with lib; {
homepage = "https://github.com/aantron/markup.ml/";
2016-05-30 13:11:44 +00:00
description = "A pair of best-effort parsers implementing the HTML5 and XML specifications";
2020-07-15 13:56:23 +00:00
license = licenses.mit;
2020-12-06 16:09:25 +00:00
maintainers = with maintainers; [ gal_bolle ];
2016-05-30 13:11:44 +00:00
};
}