2016-06-08 15:40:08 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, ncurses, ocaml, findlib, ocaml_pcre, camlzip
|
2018-04-02 06:20:37 +00:00
|
|
|
, gnutls, nettle, fetchpatch
|
|
|
|
}:
|
2017-11-30 11:28:35 +00:00
|
|
|
|
2017-12-06 20:39:13 +00:00
|
|
|
let version = "4.1.5"; in
|
2017-08-08 16:20:22 +00:00
|
|
|
|
2010-12-12 17:53:13 +00:00
|
|
|
stdenv.mkDerivation {
|
2017-08-20 04:39:14 +00:00
|
|
|
name = "ocaml${ocaml.version}-ocamlnet-${version}";
|
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";
|
2017-12-06 20:39:13 +00:00
|
|
|
sha256 = "1ppcd2zjhj6s3ib9q8dngnr53qlmkhvv7a8hzp88r79k6jygn4cm";
|
2010-12-12 17:53:13 +00:00
|
|
|
};
|
|
|
|
|
2018-04-02 06:20:37 +00:00
|
|
|
patches = [ (fetchpatch {
|
|
|
|
url = "https://raw.githubusercontent.com/ocaml/opam-repository/master/packages/ocamlnet/ocamlnet.4.1.5/files/netgzip.patch";
|
|
|
|
sha256 = "1say7zzgk24qcy9m91gcfgvz4fv7nksx4j5qnbxyq8wqw0g88ba0";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ ncurses ocaml findlib ocaml_pcre camlzip gnutls nettle ];
|
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;
|
|
|
|
|
|
|
|
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 = {
|
|
|
|
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 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2010-12-12 17:53:13 +00:00
|
|
|
maintainers = [
|
|
|
|
stdenv.lib.maintainers.z77z
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|