2016-10-13 12:16:25 -07:00
|
|
|
{ stdenv, fetchurl, zlib, ocaml, findlib, ocamlbuild, zarith, ncurses }:
|
* 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-10-05 00:32:30 -07:00
|
|
|
assert stdenv.lib.versionAtLeast ocaml.version "3.12";
|
* 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-10-13 12:16:25 -07:00
|
|
|
let param =
|
|
|
|
if stdenv.lib.versionAtLeast ocaml.version "4.02"
|
|
|
|
then {
|
2019-12-02 02:32:45 -08:00
|
|
|
version = "1.14";
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "https://github.com/xavierleroy/cryptokit/archive/release114.tar.gz";
|
2019-12-02 02:32:45 -08:00
|
|
|
sha256 = "0wkh72idkb7dahiwyl94hhbq27cc7x9fnmxkpnbqli6wi8wd7d05";
|
2016-10-13 12:16:25 -07:00
|
|
|
inherit zarith;
|
|
|
|
} else {
|
|
|
|
version = "1.10";
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "http://forge.ocamlcore.org/frs/download.php/1493/cryptokit-1.10.tar.gz";
|
2016-10-13 12:16:25 -07:00
|
|
|
sha256 = "1k2f2ixm7jcsgrzn9lz1hm9qqgq71lk9lxy3v3cwsd8xdrj3jrnv";
|
|
|
|
zarith = null;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "cryptokit";
|
2016-10-13 12:16:25 -07:00
|
|
|
inherit (param) version;
|
* 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 {
|
2016-10-13 12:16:25 -07:00
|
|
|
inherit (param) url sha256;
|
* 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-12-02 02:32:45 -08:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ncurses ];
|
|
|
|
propagatedBuildInputs = [ param.zarith zlib ];
|
* 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-10-27 06:03:25 -07:00
|
|
|
buildFlags = [ "setup.data" "build" ];
|
* 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-16 09:06:28 -07:00
|
|
|
preBuild = "mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs";
|
* 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://pauillac.inria.fr/~xleroy/software.html";
|
* 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 = "A library of cryptographic primitives for OCaml";
|
2015-12-24 09:49:07 -08:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
* 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-07 07:44:58 -07:00
|
|
|
stdenv.lib.maintainers.maggesi
|
* 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
|
|
|
};
|
|
|
|
}
|