ocamlPackages.markup: 0.8.2 -> 1.0.0
This commit is contained in:
parent
1f850a0690
commit
2830a80142
1 changed files with 11 additions and 8 deletions
|
@ -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 ];
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue