5e4cf92121
Closes #4216
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{stdenv, fetchurl, ncurses, ocaml, findlib, ocaml_pcre, camlzip, openssl, ocaml_ssl, cryptokit }:
|
|
|
|
let
|
|
ocaml_version = (builtins.parseDrvName ocaml.name).version;
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ocamlnet-3.7.6";
|
|
|
|
src = fetchurl {
|
|
url = http://download.camlcity.org/download/ocamlnet-3.7.6.tar.gz;
|
|
sha256 = "0z17kxn1cyn1x5wgajw737m9rsjwji823rxdwvv8a5239xd1whji";
|
|
};
|
|
|
|
buildInputs = [ncurses ocaml findlib ocaml_pcre camlzip openssl ocaml_ssl cryptokit];
|
|
|
|
propagatedbuildInputs = [ncurses ocaml_pcre camlzip openssl ocaml_ssl cryptokit];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
dontAddPrefix = true;
|
|
|
|
preConfigure = ''
|
|
configureFlagsArray=(
|
|
-bindir $out/bin
|
|
-enable-ssl
|
|
-enable-zip
|
|
-enable-pcre
|
|
-enable-crypto
|
|
-disable-gtk2
|
|
-with-nethttpd
|
|
-datadir $out/lib/ocaml/${ocaml_version}/ocamlnet
|
|
)
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make all
|
|
make opt
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://projects.camlcity.org/projects/ocamlnet.html;
|
|
description = "A 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.";
|
|
platforms = ocaml.meta.platforms;
|
|
maintainers = [
|
|
stdenv.lib.maintainers.z77z
|
|
];
|
|
};
|
|
}
|