ocamlPackages.markup: 0.8.2 -> 1.0.0

This commit is contained in:
sternenseemann 2020-12-06 17:09:25 +01:00 committed by Vincent Laporte
parent 1f850a0690
commit 2830a80142
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,23 +1,26 @@
{ lib, buildDunePackage, fetchzip, uutf }:
{ lib, buildDunePackage, fetchzip, ocaml, uchar, uutf, ounit2 }:
buildDunePackage rec {
pname = "markup";
version = "0.8.2";
version = "1.0.0";
useDune2 = true;
src = fetchzip {
url = "https://github.com/aantron/markup.ml/archive/${version}.tar.gz";
sha256 = "13zcrwzjmifniv3bvjbkd2ah8wwa3ld75bxh1d8hrzdvfxzh9szn";
};
sha256 = "09hkrf9pw6hpb9j06p5bddklpnjwdjpqza3bx2179l970yl67an9";
};
propagatedBuildInputs = [ uutf ];
propagatedBuildInputs = [ uchar uutf ];
checkInputs = [ ounit2 ];
doCheck = lib.versionAtLeast ocaml.version "4.04";
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
];
maintainers = with maintainers; [ gal_bolle ];
};
}