nixpkgs/pkgs/development/ocaml-modules/uri/default.nix
R. RyanTM 485c88a311 ocamlPackages.uri: 2.2.0 -> 3.0.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ocaml4.06.1-uri/versions
2019-08-19 19:10:20 -07:00

25 lines
671 B
Nix

{ lib, fetchurl, buildDunePackage, ppx_sexp_conv, ounit
, re, sexplib0, stringext
}:
buildDunePackage rec {
pname = "uri";
version = "3.0.0";
src = fetchurl {
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
sha256 = "1yhrgm3hbn0hh4jdmcrvxinazgg8vrm0vn425sg8ggzblvxk9cwg";
};
buildInputs = [ ounit ];
propagatedBuildInputs = [ ppx_sexp_conv re sexplib0 stringext ];
doCheck = true;
meta = {
homepage = "https://github.com/mirage/ocaml-uri";
description = "RFC3986 URI parsing library for OCaml";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}