ocamlPackages.markup: 0.8.2 -> 1.0.0
This commit is contained in:
parent
1f850a0690
commit
2830a80142
|
@ -1,23 +1,26 @@
|
||||||
{ lib, buildDunePackage, fetchzip, uutf }:
|
{ lib, buildDunePackage, fetchzip, ocaml, uchar, uutf, ounit2 }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "markup";
|
pname = "markup";
|
||||||
version = "0.8.2";
|
version = "1.0.0";
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://github.com/aantron/markup.ml/archive/${version}.tar.gz";
|
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; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/aantron/markup.ml/";
|
homepage = "https://github.com/aantron/markup.ml/";
|
||||||
description = "A pair of best-effort parsers implementing the HTML5 and XML specifications";
|
description = "A pair of best-effort parsers implementing the HTML5 and XML specifications";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [
|
maintainers = with maintainers; [ gal_bolle ];
|
||||||
gal_bolle
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue