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

25 lines
671 B
Nix
Raw Normal View History

2019-04-06 06:49:48 -07:00
{ lib, fetchurl, buildDunePackage, ppx_sexp_conv, ounit
2019-04-27 23:35:44 -07:00
, re, sexplib0, stringext
}:
buildDunePackage rec {
pname = "uri";
version = "3.0.0";
2018-01-10 23:57:57 -08:00
src = fetchurl {
2019-04-27 23:35:44 -07:00
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
sha256 = "1yhrgm3hbn0hh4jdmcrvxinazgg8vrm0vn425sg8ggzblvxk9cwg";
};
buildInputs = [ ounit ];
2019-04-27 23:35:44 -07:00
propagatedBuildInputs = [ ppx_sexp_conv re sexplib0 stringext ];
2015-07-01 11:20:19 -07:00
doCheck = true;
meta = {
2018-01-10 23:57:57 -08:00
homepage = "https://github.com/mirage/ocaml-uri";
description = "RFC3986 URI parsing library for OCaml";
2019-04-06 06:49:48 -07:00
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}