ocamlPackages.iri: init at 0.4.0

iri is an OCaml implementation of Internationalized Resource Identifiers
(IRIs).

Homepage: https://framagit.org/zoggy/ocaml-iri
This commit is contained in:
Vincent Laporte 2018-07-09 17:15:42 +00:00
parent 131e9f59e8
commit de1a8ddb3c
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitLab, ocaml, findlib
, sedlex, uunf, uutf
}:
if !stdenv.lib.versionAtLeast ocaml.version "4.03"
then throw "iri is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
version = "0.4.0";
name = "ocaml${ocaml.version}-iri-${version}";
src = fetchFromGitLab {
domain = "framagit.org";
owner = "zoggy";
repo = "ocaml-iri";
rev = version;
sha256 = "0fsmfmzmyggm0h77a7mb0n41vqi6q4ln1xzsv72zbvysa7l8w84q";
};
buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [ sedlex uunf uutf ];
createFindlibDestdir = true;
meta = {
description = "IRI (RFC3987) native OCaml implementation";
license = stdenv.lib.licenses.lgpl3;
maintainers = [ stdenv.lib.maintainers.vbgl ];
inherit (src.meta) homepage;
inherit (ocaml.meta) platforms;
};
}

View file

@ -321,6 +321,8 @@ let
inifiles = callPackage ../development/ocaml-modules/inifiles { };
iri = callPackage ../development/ocaml-modules/iri { };
jingoo = callPackage ../development/ocaml-modules/jingoo {
pcre = ocaml_pcre;
};