2023-08-22 20:05:09 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ocaml, findlib, perl, makeWrapper
|
|
|
|
, rresult, bos, ocaml_pcre, re, camlp-streams
|
|
|
|
}:
|
2021-01-09 10:05:03 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
if lib.versionOlder ocaml.version "4.02"
|
2021-01-09 10:05:03 +00:00
|
|
|
then throw "camlp5 is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
let params =
|
|
|
|
if lib.versionAtLeast ocaml.version "4.12"
|
|
|
|
then rec {
|
|
|
|
version = "8.00.05";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "camlp5";
|
|
|
|
repo = "camlp5";
|
|
|
|
rev = version;
|
|
|
|
hash = "sha256-Havr3RB6iUP7QzV+LUGwMHtGzmRdS5RqYsqJ0N5w6gE=";
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ocaml findlib perl ];
|
|
|
|
buildInputs = [ bos ocaml_pcre re rresult ];
|
|
|
|
propagatedBuildInputs = [ camlp-streams ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
postFixup = ''
|
|
|
|
for p in camlp5 camlp5o camlp5r camlp5sch mkcamlp5 ocpp5
|
|
|
|
do
|
|
|
|
wrapProgram $out/bin/$p \
|
|
|
|
--suffix CAML_LD_LIBRARY_PATH : ${ocaml_pcre}/lib/ocaml/${ocaml.version}/site-lib/stublibs
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
} else rec {
|
|
|
|
version = "7.14";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "camlp5";
|
|
|
|
repo = "camlp5";
|
|
|
|
rev = "rel${builtins.replaceStrings [ "." ] [ "" ] version}";
|
|
|
|
sha256 = "1dd68bisbpqn5lq2pslm582hxglcxnbkgfkwhdz67z4w9d5nvr7w";
|
|
|
|
};
|
|
|
|
nativeBuildInputs = [ ocaml perl ];
|
|
|
|
}
|
|
|
|
; in
|
2023-02-09 11:40:11 +00:00
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
stdenv.mkDerivation (params // {
|
|
|
|
|
|
|
|
pname = "ocaml${ocaml.version}-camlp5";
|
|
|
|
|
|
|
|
strictDeps = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
prefixKey = "-prefix ";
|
|
|
|
|
2021-01-09 10:05:03 +00:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(--strict --libdir $out/lib/ocaml/${ocaml.version}/site-lib)
|
2023-08-22 20:05:09 +00:00
|
|
|
patchShebangs ./config/find_stuffversion.pl etc/META.pl
|
2021-01-09 10:05:03 +00:00
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildFlags = [ "world.opt" ];
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Preprocessor-pretty-printer for OCaml";
|
|
|
|
longDescription = ''
|
|
|
|
Camlp5 is a preprocessor and pretty-printer for OCaml programs.
|
|
|
|
It also provides parsing and printing tools.
|
|
|
|
'';
|
|
|
|
homepage = "https://camlp5.github.io/";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = ocaml.meta.platforms or [];
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
maggesi vbgl
|
|
|
|
];
|
|
|
|
};
|
2023-08-22 20:05:09 +00:00
|
|
|
})
|