3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/uri/default.nix

25 lines
685 B
Nix
Raw Normal View History

{ stdenv, fetchurl, buildDunePackage, ppx_sexp_conv, ounit
2018-07-05 20:40:30 +01:00
, re, sexplib, stringext
}:
buildDunePackage rec {
pname = "uri";
2018-01-14 05:33:36 +00:00
version = "1.9.6";
2018-01-11 07:57:57 +00:00
src = fetchurl {
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
2018-01-14 05:33:36 +00:00
sha256 = "1m845rwd70wi4iijkrigyz939m1x84ba70hvv0d9sgk6971w4kz0";
};
buildInputs = [ ounit ];
2018-07-05 20:40:30 +01:00
propagatedBuildInputs = [ ppx_sexp_conv re sexplib stringext ];
2015-07-01 19:20:19 +01:00
doCheck = true;
meta = {
2018-01-11 07:57:57 +00:00
homepage = "https://github.com/mirage/ocaml-uri";
description = "RFC3986 URI parsing library for OCaml";
license = stdenv.lib.licenses.isc;
2018-01-11 07:57:57 +00:00
maintainers = [ stdenv.lib.maintainers.vbgl ];
};
}