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 21:40:30 +02:00
, re, sexplib, stringext
}:
buildDunePackage rec {
pname = "uri";
2018-01-14 06:33:36 +01:00
version = "1.9.6";
2018-01-11 08:57:57 +01:00
src = fetchurl {
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
2018-01-14 06:33:36 +01:00
sha256 = "1m845rwd70wi4iijkrigyz939m1x84ba70hvv0d9sgk6971w4kz0";
};
buildInputs = [ ounit ];
2018-07-05 21:40:30 +02:00
propagatedBuildInputs = [ ppx_sexp_conv re sexplib 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";
license = stdenv.lib.licenses.isc;
2018-01-11 08:57:57 +01:00
maintainers = [ stdenv.lib.maintainers.vbgl ];
};
}