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

26 lines
655 B
Nix
Raw Normal View History

2019-08-21 14:12:37 -07:00
{ lib, fetchurl, buildDunePackage, ounit
, re, stringext
}:
buildDunePackage rec {
minimumOCamlVersion = "4.03";
pname = "uri";
2020-02-23 19:35:34 -08:00
version = "3.1.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";
2020-02-23 19:35:34 -08:00
sha256 = "0hxc2mshmqxz2qmjya47dzf858s6lsf3xvqswpzprkvhv0zq4ln4";
};
buildInputs = [ ounit ];
2019-08-21 14:12:37 -07:00
propagatedBuildInputs = [ re 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 ];
};
}