2016-01-06 01:38:57 -08:00
|
|
|
{stdenv, buildOcaml, fetchurl, pcre, ocaml, findlib}:
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
|
2016-01-06 01:38:57 -08:00
|
|
|
buildOcaml {
|
|
|
|
name = "ocaml-pcre";
|
|
|
|
version = "7.1.1";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-07-17 05:19:27 -07:00
|
|
|
url = https://github.com/mmottl/pcre-ocaml/releases/download/v7.1.1/pcre-ocaml-7.1.1.tar.gz;
|
|
|
|
sha256 = "0nj4gb6hjjjmz5gnl9cjrh4w82rw8cvbwnk0hxhfgfd25p9k50n3";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
};
|
|
|
|
|
2012-03-22 03:31:10 -07:00
|
|
|
buildInputs = [ocaml findlib];
|
|
|
|
propagatedBuildInputs = [pcre];
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
|
2010-12-21 01:37:35 -08:00
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2016-01-06 01:38:57 -08:00
|
|
|
hasSharedObjects = true;
|
|
|
|
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
configurePhase = "true"; # Skip configure phase
|
|
|
|
|
2014-04-21 15:31:27 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://bitbucket.org/mmottl/pcre-ocaml";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
description = "An efficient C-library for pattern matching with Perl-style regular expressions in OCaml";
|
2014-04-21 15:31:27 -07:00
|
|
|
license = licenses.lgpl21;
|
2015-12-24 09:49:07 -08:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-04-21 15:31:27 -07:00
|
|
|
maintainers = with maintainers; [ z77z vbmithr ];
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 07:40:04 -08:00
|
|
|
};
|
|
|
|
}
|