2018-09-05 18:14:47 +01:00
|
|
|
{ stdenv, fetchzip, ocaml, findlib, jbuilder, ounit, seq }:
|
2018-06-24 10:20:13 +01:00
|
|
|
|
|
|
|
if !stdenv.lib.versionAtLeast ocaml.version "4.02"
|
|
|
|
then throw "re is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
2015-01-07 12:56:38 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-06-24 10:20:13 +01:00
|
|
|
name = "ocaml${ocaml.version}-re-${version}";
|
2018-09-05 18:14:47 +01:00
|
|
|
version = "1.8.0";
|
2015-01-07 12:56:38 +00:00
|
|
|
|
2015-03-19 18:13:39 +00:00
|
|
|
src = fetchzip {
|
2017-10-17 13:52:22 +01:00
|
|
|
url = "https://github.com/ocaml/ocaml-re/archive/${version}.tar.gz";
|
2018-09-05 18:14:47 +01:00
|
|
|
sha256 = "0ch6hvmm4ym3w2vghjxf3ka5j1023a37980fqi4zcb7sx756z20i";
|
2015-01-07 12:56:38 +00:00
|
|
|
};
|
|
|
|
|
2018-06-24 10:20:13 +01:00
|
|
|
buildInputs = [ ocaml findlib jbuilder ounit ];
|
2018-09-05 18:14:47 +01:00
|
|
|
propagatedBuildInputs = [ seq ];
|
2015-01-07 12:56:38 +00:00
|
|
|
|
2018-06-24 10:20:13 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkPhase = "jbuilder runtest";
|
2015-01-07 12:56:38 +00:00
|
|
|
|
2018-06-24 10:20:13 +01:00
|
|
|
inherit (jbuilder) installPhase;
|
2015-01-07 12:56:38 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/ocaml/ocaml-re;
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2015-01-07 12:56:38 +00:00
|
|
|
description = "Pure OCaml regular expressions, with support for Perl and POSIX-style strings";
|
|
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
|
|
|
};
|
|
|
|
}
|