2019-08-21 22:12:37 +01:00
|
|
|
{ lib, fetchurl, buildDunePackage, ounit
|
2020-12-06 08:36:39 +00:00
|
|
|
, angstrom, stringext
|
2017-02-19 10:57:24 +00:00
|
|
|
}:
|
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
2020-04-24 06:28:35 +01:00
|
|
|
minimumOCamlVersion = "4.03";
|
2018-11-05 10:21:46 +00:00
|
|
|
pname = "uri";
|
2020-12-06 08:36:39 +00:00
|
|
|
version = "4.0.0";
|
|
|
|
|
|
|
|
useDune2 = true;
|
2015-01-09 09:28:35 +00:00
|
|
|
|
2018-01-11 07:57:57 +00:00
|
|
|
src = fetchurl {
|
2019-04-28 07:35:44 +01:00
|
|
|
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
|
2020-12-06 08:36:39 +00:00
|
|
|
sha256 = "13r9nkgym9z3dqxkyf0yyaqlrk5r3pjdw0kfzvrc90bmhwl9j380";
|
2015-01-09 09:28:35 +00:00
|
|
|
};
|
|
|
|
|
2020-12-06 08:36:39 +00:00
|
|
|
checkInputs = [ ounit ];
|
|
|
|
propagatedBuildInputs = [ angstrom stringext ];
|
2015-07-01 19:20:19 +01:00
|
|
|
doCheck = true;
|
2015-01-09 09:28:35 +00:00
|
|
|
|
|
|
|
meta = {
|
2018-01-11 07:57:57 +00:00
|
|
|
homepage = "https://github.com/mirage/ocaml-uri";
|
2015-01-09 09:28:35 +00:00
|
|
|
description = "RFC3986 URI parsing library for OCaml";
|
2019-04-06 14:49:48 +01:00
|
|
|
license = lib.licenses.isc;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
2015-01-09 09:28:35 +00:00
|
|
|
};
|
|
|
|
}
|