Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
78 lines
1.6 KiB
Nix
78 lines
1.6 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
pkg-config,
|
|
which,
|
|
ncurses,
|
|
ocaml,
|
|
findlib,
|
|
ocaml_pcre,
|
|
camlzip,
|
|
gnutls,
|
|
nettle,
|
|
}:
|
|
|
|
lib.throwIf (lib.versionOlder ocaml.version "4.02" || lib.versionAtLeast ocaml.version "5.0")
|
|
"ocamlnet is not available for OCaml ${ocaml.version}"
|
|
|
|
stdenv.mkDerivation
|
|
rec {
|
|
pname = "ocaml${ocaml.version}-ocamlnet";
|
|
version = "4.1.9";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.camlcity.org/download/ocamlnet-${version}.tar.gz";
|
|
sha256 = "1vlwxjxr946gdl61a1d7yk859cijq45f60dhn54ik3w4g6cx33pr";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
which
|
|
ocaml
|
|
findlib
|
|
];
|
|
buildInputs = [
|
|
ncurses
|
|
ocaml_pcre
|
|
camlzip
|
|
gnutls
|
|
nettle
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
dontAddPrefix = true;
|
|
dontAddStaticConfigureFlags = true;
|
|
configurePlatforms = [ ];
|
|
|
|
preConfigure = ''
|
|
configureFlagsArray=(
|
|
-bindir $out/bin
|
|
-enable-gnutls
|
|
-enable-zip
|
|
-enable-pcre
|
|
-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 = "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.";
|
|
inherit (ocaml.meta) platforms;
|
|
maintainers = [
|
|
lib.maintainers.maggesi
|
|
];
|
|
};
|
|
}
|