2021-04-06 06:47:18 +00:00
|
|
|
{ stdenv, lib, fetchurl, pkg-config, which, ncurses, ocaml, findlib, ocaml_pcre, camlzip
|
2018-05-09 05:59:18 +00:00
|
|
|
, gnutls, nettle
|
2018-04-02 06:20:37 +00:00
|
|
|
}:
|
2017-11-30 11:28:35 +00:00
|
|
|
|
2022-12-29 05:18:35 +00:00
|
|
|
lib.throwIf (lib.versionOlder ocaml.version "4.02" || lib.versionAtLeast ocaml.version "5.0")
|
|
|
|
"ocamlnet is not available for OCaml ${ocaml.version}"
|
2017-08-08 16:20:22 +00:00
|
|
|
|
2020-03-02 09:20:00 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-02-06 22:35:27 +00:00
|
|
|
pname = "ocaml${ocaml.version}-ocamlnet";
|
2021-04-06 06:47:18 +00:00
|
|
|
version = "4.1.9";
|
2010-12-12 17:53:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-08-20 04:39:14 +00:00
|
|
|
url = "http://download.camlcity.org/download/ocamlnet-${version}.tar.gz";
|
2021-04-06 06:47:18 +00:00
|
|
|
sha256 = "1vlwxjxr946gdl61a1d7yk859cijq45f60dhn54ik3w4g6cx33pr";
|
2010-12-12 17:53:13 +00:00
|
|
|
};
|
|
|
|
|
2022-02-22 09:59:04 +00:00
|
|
|
nativeBuildInputs = [ pkg-config which ocaml findlib ];
|
|
|
|
buildInputs = [ ncurses ocaml_pcre camlzip gnutls nettle ];
|
|
|
|
|
|
|
|
strictDeps = true;
|
2013-06-04 18:37:29 +00:00
|
|
|
|
2010-12-31 17:48:55 +00:00
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2010-12-12 17:53:13 +00:00
|
|
|
dontAddPrefix = true;
|
2021-08-14 12:00:00 +00:00
|
|
|
dontAddStaticConfigureFlags = true;
|
|
|
|
configurePlatforms = [];
|
2010-12-12 17:53:13 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(
|
|
|
|
-bindir $out/bin
|
2016-06-08 15:40:08 +00:00
|
|
|
-enable-gnutls
|
2010-12-12 17:53:13 +00:00
|
|
|
-enable-zip
|
2013-06-04 18:37:29 +00:00
|
|
|
-enable-pcre
|
|
|
|
-disable-gtk2
|
|
|
|
-with-nethttpd
|
2016-10-05 07:32:30 +00:00
|
|
|
-datadir $out/lib/ocaml/${ocaml.version}/ocamlnet
|
2010-12-12 17:53:13 +00:00
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
make all
|
|
|
|
make opt
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-02-29 07:27:29 +00:00
|
|
|
homepage = "http://projects.camlcity.org/projects/ocamlnet.html";
|
2010-12-12 17:53:13 +00:00
|
|
|
description = "Library implementing Internet protocols (http, cgi, email, etc.) for OCaml";
|
|
|
|
license = "Most Ocamlnet modules are released under the zlib/png license. The HTTP server module Nethttpd is, however, under the GPL.";
|
2022-05-10 17:36:58 +00:00
|
|
|
inherit (ocaml.meta) platforms;
|
2010-12-12 17:53:13 +00:00
|
|
|
maintainers = [
|
2021-01-11 12:49:15 +00:00
|
|
|
lib.maintainers.maggesi
|
2010-12-12 17:53:13 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|