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

25 lines
671 B
Nix
Raw Normal View History

2019-04-06 14:49:48 +01:00
{ lib, fetchurl, buildDunePackage, ppx_sexp_conv, ounit
2019-04-28 07:35:44 +01:00
, re, sexplib0, stringext
}:
buildDunePackage rec {
pname = "uri";
version = "3.0.0";
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";
sha256 = "1yhrgm3hbn0hh4jdmcrvxinazgg8vrm0vn425sg8ggzblvxk9cwg";
};
buildInputs = [ ounit ];
2019-04-28 07:35:44 +01:00
propagatedBuildInputs = [ ppx_sexp_conv re sexplib0 stringext ];
2015-07-01 19:20:19 +01: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 14:49:48 +01:00
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}