2018-05-08 23:41:45 -07:00
|
|
|
{ stdenv, fetchurl, pcre, ocaml, findlib, ocamlbuild }:
|
* 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
|
|
|
|
2018-05-08 23:41:45 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ocaml${ocaml.version}-pcre-${version}";
|
2017-10-17 00:30:25 -07:00
|
|
|
version = "7.2.3";
|
* 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 {
|
2018-05-08 23:41:45 -07:00
|
|
|
url = "https://github.com/mmottl/pcre-ocaml/releases/download/v${version}/pcre-ocaml-${version}.tar.gz";
|
2017-10-17 00:30:25 -07:00
|
|
|
sha256 = "0rj6dw79px4sj2kq0iss2nzq3rnsn9wivvc0f44wa1mppr6njfb3";
|
* 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
|
|
|
};
|
|
|
|
|
2018-05-08 23:41:45 -07:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ];
|
2012-03-22 03:31:10 -07:00
|
|
|
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;
|
|
|
|
|
* 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; {
|
2017-08-01 13:03:30 -07:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|