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