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

25 lines
623 B
Nix
Raw Normal View History

2019-08-22 00:12:37 +03:00
{ lib, fetchurl, buildDunePackage, ounit
, re, stringext
}:
buildDunePackage rec {
pname = "uri";
2020-02-24 06:35:34 +03:00
version = "3.1.0";
2018-01-11 10:57:57 +03:00
src = fetchurl {
2019-04-28 09:35:44 +03:00
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
2020-02-24 06:35:34 +03:00
sha256 = "0hxc2mshmqxz2qmjya47dzf858s6lsf3xvqswpzprkvhv0zq4ln4";
};
buildInputs = [ ounit ];
2019-08-22 00:12:37 +03:00
propagatedBuildInputs = [ re stringext ];
2015-07-01 21:20:19 +03:00
doCheck = true;
meta = {
2018-01-11 10:57:57 +03:00
homepage = "https://github.com/mirage/ocaml-uri";
description = "RFC3986 URI parsing library for OCaml";
2019-04-06 16:49:48 +03:00
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}