Adds ocaml-re
Re is a regular expression library for OCaml. Homepage: https://github.com/ocaml/ocaml-re
This commit is contained in:
parent
fd64740c33
commit
4e382bce7e
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv, fetchgit, ocaml, findlib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ocaml-re-1.2.2";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = https://github.com/ocaml/ocaml-re.git;
|
||||||
|
rev = "refs/tags/${name}";
|
||||||
|
sha256 = "1556i1zc6nrg4hxlvidllfhkjwl6n74biyjbvjlby8304n84jrk7";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ocaml findlib ];
|
||||||
|
|
||||||
|
configurePhase = "ocaml setup.ml -configure --prefix $out";
|
||||||
|
buildPhase = "ocaml setup.ml -build";
|
||||||
|
installPhase = "ocaml setup.ml -install";
|
||||||
|
|
||||||
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/ocaml/ocaml-re;
|
||||||
|
platforms = ocaml.meta.platforms;
|
||||||
|
description = "Pure OCaml regular expressions, with support for Perl and POSIX-style strings";
|
||||||
|
license = stdenv.lib.licenses.lgpl2;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3842,6 +3842,8 @@ let
|
||||||
|
|
||||||
pycaml = callPackage ../development/ocaml-modules/pycaml { };
|
pycaml = callPackage ../development/ocaml-modules/pycaml { };
|
||||||
|
|
||||||
|
re = callPackage ../development/ocaml-modules/re { };
|
||||||
|
|
||||||
safepass = callPackage ../development/ocaml-modules/safepass { };
|
safepass = callPackage ../development/ocaml-modules/safepass { };
|
||||||
|
|
||||||
sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };
|
sqlite3EZ = callPackage ../development/ocaml-modules/sqlite3EZ { };
|
||||||
|
|
Loading…
Reference in New Issue