2019-08-21 21:12:37 +00: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 {
|
2023-04-05 04:17:25 +00:00
|
|
|
minimalOCamlVersion = "4.03";
|
2018-11-05 10:21:46 +00:00
|
|
|
pname = "uri";
|
2021-05-25 07:00:09 +00:00
|
|
|
version = "4.2.0";
|
2020-12-06 08:36:39 +00:00
|
|
|
|
2023-04-05 04:17:25 +00:00
|
|
|
duneVersion = "3";
|
2015-01-09 09:28:35 +00:00
|
|
|
|
2018-01-11 07:57:57 +00:00
|
|
|
src = fetchurl {
|
2019-04-28 06:35:44 +00:00
|
|
|
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
|
2021-05-25 07:00:09 +00:00
|
|
|
sha256 = "0szifda6yism5vn5jdizkha3ad0xk6zw4xgfl8g77dnv83ci7h65";
|
2015-01-09 09:28:35 +00:00
|
|
|
};
|
|
|
|
|
2022-03-01 15:42:22 +00:00
|
|
|
checkInputs = [ ounit ];
|
2020-12-06 08:36:39 +00:00
|
|
|
propagatedBuildInputs = [ angstrom stringext ];
|
2015-07-01 18:20:19 +00: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 13:49:48 +00:00
|
|
|
license = lib.licenses.isc;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
2015-01-09 09:28:35 +00:00
|
|
|
};
|
|
|
|
}
|