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

26 lines
655 B
Nix
Raw Normal View History

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