nixpkgs/pkgs/development/ocaml-modules/ocamlnet/default.nix

54 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, pkg-config, which, ncurses, ocaml, findlib, ocaml_pcre, camlzip
2018-05-09 07:59:18 +02:00
, gnutls, nettle
}:
if lib.versionOlder ocaml.version "4.02"
then throw "ocamlnet is not available for OCaml ${ocaml.version}"
else
2017-08-08 18:20:22 +02:00
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-ocamlnet-${version}";
version = "4.1.9";
src = fetchurl {
url = "http://download.camlcity.org/download/ocamlnet-${version}.tar.gz";
sha256 = "1vlwxjxr946gdl61a1d7yk859cijq45f60dhn54ik3w4g6cx33pr";
};
nativeBuildInputs = [ pkg-config which ];
buildInputs = [ ncurses ocaml findlib ocaml_pcre camlzip gnutls nettle ];
createFindlibDestdir = true;
dontAddPrefix = true;
dontAddStaticConfigureFlags = true;
configurePlatforms = [];
preConfigure = ''
configureFlagsArray=(
-bindir $out/bin
2016-06-08 17:40:08 +02:00
-enable-gnutls
-enable-zip
-enable-pcre
-disable-gtk2
-with-nethttpd
2016-10-05 09:32:30 +02:00
-datadir $out/lib/ocaml/${ocaml.version}/ocamlnet
)
'';
buildPhase = ''
make all
make opt
'';
meta = {
2020-02-29 08:27:29 +01:00
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 or [];
maintainers = [
lib.maintainers.maggesi
];
};
}