2016-06-08 17:40:08 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, ncurses, ocaml, findlib, ocaml_pcre, camlzip
|
|
|
|
, gnutls, nettle }:
|
2010-12-12 18:53:13 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2016-10-09 20:02:25 +02:00
|
|
|
name = "ocamlnet-4.1.2";
|
2010-12-12 18:53:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-10-09 20:02:25 +02:00
|
|
|
url = http://download.camlcity.org/download/ocamlnet-4.1.2.tar.gz;
|
|
|
|
sha256 = "1n0l9zlq7dc5yr43bpa4a0b6bxj3iyjkadbb41g59zlwa8hkk34i";
|
2010-12-12 18:53:13 +01:00
|
|
|
};
|
|
|
|
|
2016-06-08 17:40:08 +02:00
|
|
|
buildInputs = [ ncurses ocaml findlib ocaml_pcre camlzip gnutls pkgconfig nettle ];
|
2013-06-04 20:37:29 +02:00
|
|
|
|
2010-12-31 18:48:55 +01:00
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2010-12-12 18:53:13 +01:00
|
|
|
dontAddPrefix = true;
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(
|
|
|
|
-bindir $out/bin
|
2016-06-08 17:40:08 +02:00
|
|
|
-enable-gnutls
|
2010-12-12 18:53:13 +01:00
|
|
|
-enable-zip
|
2013-06-04 20:37:29 +02:00
|
|
|
-enable-pcre
|
|
|
|
-disable-gtk2
|
|
|
|
-with-nethttpd
|
2016-10-05 09:32:30 +02:00
|
|
|
-datadir $out/lib/ocaml/${ocaml.version}/ocamlnet
|
2010-12-12 18:53:13 +01:00
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
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.";
|
2015-12-24 18:49:07 +01:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2010-12-12 18:53:13 +01:00
|
|
|
maintainers = [
|
|
|
|
stdenv.lib.maintainers.z77z
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|