2021-02-03 11:45:18 -08:00
|
|
|
{ lib, buildDunePackage, fetchFromGitHub, pkg-config, openssl
|
|
|
|
, dune-configurator }:
|
* 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
|
|
|
|
2019-09-30 12:57:19 -07:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "ssl";
|
2021-02-03 11:45:18 -08:00
|
|
|
version = "0.5.10";
|
* 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
|
|
|
|
2019-09-30 12:57:19 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "savonet";
|
|
|
|
repo = "ocaml-ssl";
|
2021-02-03 11:45:18 -08:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1rszqiqayh67xlwd5411k8vib47x9kapdr037z1majd2c14z3kcb";
|
* 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
|
|
|
};
|
|
|
|
|
2021-02-03 11:45:18 -08:00
|
|
|
useDune2 = true;
|
2019-09-30 12:57:19 -07:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2021-02-03 11:45:18 -08:00
|
|
|
buildInputs = [ dune-configurator ];
|
2015-07-06 15:44:49 -07:00
|
|
|
propagatedBuildInputs = [openssl];
|
* 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
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://savonet.rastageeks.org/";
|
* 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 = "OCaml bindings for libssl ";
|
|
|
|
license = "LGPL+link exception";
|
* Enable hydra build for ocaml-batteries, camlzip, camomile, ocaml-cryptgps, cryptokit, ocaml-lwt, menhir, ounit, ocaml-pcre, ocaml-react, ocaml-ssl
svn path=/nixpkgs/trunk/; revision=25064
2010-12-11 06:50:45 -08:00
|
|
|
maintainers = [
|
2019-10-13 09:33:38 -07:00
|
|
|
lib.maintainers.maggesi
|
2021-02-03 11:45:18 -08:00
|
|
|
lib.maintainers.anmonteiro
|
* Enable hydra build for ocaml-batteries, camlzip, camomile, ocaml-cryptgps, cryptokit, ocaml-lwt, menhir, ounit, ocaml-pcre, ocaml-react, ocaml-ssl
svn path=/nixpkgs/trunk/; revision=25064
2010-12-11 06:50:45 -08:00
|
|
|
];
|
* 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
|
|
|
};
|
|
|
|
}
|