Addg ocaml-uri

RFC3986 URI parsing library for OCaml

Homepage: https://github.com/mirage/ocaml-uri
This commit is contained in:
Vincent Laporte 2015-01-09 10:28:35 +01:00
parent 3b3839e6ea
commit 310623ad6c
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ stdenv, fetchgit, ocaml, findlib, re, sexplib, stringext }:
let version = "1.7.2"; in
stdenv.mkDerivation {
name = "ocaml-uri-${version}";
src = fetchgit {
url = https://github.com/mirage/ocaml-uri.git;
rev = "refs/tags/v${version}";
sha256 = "19rq68dzvqzpqc2zvrk5sj1iklknnyrlbcps2vb8iw4cjlrnnaa1";
};
buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [ re sexplib stringext ];
configurePhase = "ocaml setup.ml -configure --prefix $out";
buildPhase = ''
ocaml setup.ml -build
ocaml setup.ml -doc
'';
installPhase = "ocaml setup.ml -install";
createFindlibDestdir = true;
meta = {
homepage = https://github.com/mirage/ocaml-uri;
platforms = ocaml.meta.platforms;
description = "RFC3986 URI parsing library for OCaml";
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}

View File

@ -3880,6 +3880,11 @@ let
uucd = callPackage ../development/ocaml-modules/uucd { };
uucp = callPackage ../development/ocaml-modules/uucp { };
uunf = callPackage ../development/ocaml-modules/uunf { };
uri = callPackage ../development/ocaml-modules/uri {
sexplib = ocaml_sexplib;
};
uuseg = callPackage ../development/ocaml-modules/uuseg { };
uutf = callPackage ../development/ocaml-modules/uutf { };