nixpkgs/pkgs/development/ocaml-modules/uri/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
689 B
Nix
Raw Normal View History

2019-08-21 21:12:37 +00:00
{ lib, fetchurl, buildDunePackage, ounit
2020-12-06 08:36:39 +00:00
, angstrom, stringext
}:
buildDunePackage rec {
2023-04-05 04:17:25 +00:00
minimalOCamlVersion = "4.03";
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";
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";
};
checkInputs = [ ounit ];
2020-12-06 08:36:39 +00:00
propagatedBuildInputs = [ angstrom stringext ];
2015-07-01 18:20:19 +00:00
doCheck = true;
meta = {
2018-01-11 07:57:57 +00:00
homepage = "https://github.com/mirage/ocaml-uri";
description = "RFC3986 URI parsing library for OCaml";
2019-04-06 13:49:48 +00:00
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}