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