2021-06-20 10:31:52 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ocaml, perl }:
|
2021-01-02 09:39:15 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
if lib.versionOlder ocaml.version "4.02"
|
2021-10-14 16:48:16 +00:00
|
|
|
|| lib.versionOlder "4.13" ocaml.version
|
2021-01-02 09:39:15 +00:00
|
|
|
then throw "camlp5 is not available for OCaml ${ocaml.version}"
|
|
|
|
else
|
2009-11-02 10:47:24 +00:00
|
|
|
|
2021-06-20 10:31:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2009-11-02 10:47:24 +00:00
|
|
|
|
2021-06-20 10:31:52 +00:00
|
|
|
pname = "camlp5";
|
|
|
|
version = "7.14";
|
2009-11-02 10:47:24 +00:00
|
|
|
|
2021-06-20 10:31:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "camlp5";
|
|
|
|
repo = "camlp5";
|
|
|
|
rev = "rel${builtins.replaceStrings [ "." ] [ "" ] version}";
|
2021-01-02 09:39:15 +00:00
|
|
|
sha256 = "1dd68bisbpqn5lq2pslm582hxglcxnbkgfkwhdz67z4w9d5nvr7w";
|
2009-11-02 10:47:24 +00:00
|
|
|
};
|
|
|
|
|
2021-01-02 09:39:15 +00:00
|
|
|
buildInputs = [ ocaml perl ];
|
2009-11-02 10:47:24 +00:00
|
|
|
|
|
|
|
prefixKey = "-prefix ";
|
|
|
|
|
2021-01-02 09:39:15 +00:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlagsArray=(--strict --libdir $out/lib/ocaml/${ocaml.version}/site-lib)
|
|
|
|
patchShebangs ./config/find_stuffversion.pl
|
|
|
|
'';
|
2009-11-02 10:47:24 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
buildFlags = [ "world.opt" ];
|
2009-11-02 10:47:24 +00:00
|
|
|
|
2017-05-02 15:12:17 +00:00
|
|
|
dontStrip = true;
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2009-11-02 11:44:27 +00:00
|
|
|
description = "Preprocessor-pretty-printer for OCaml";
|
2009-11-02 10:47:24 +00:00
|
|
|
longDescription = ''
|
|
|
|
Camlp5 is a preprocessor and pretty-printer for OCaml programs.
|
|
|
|
It also provides parsing and printing tools.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://camlp5.github.io/";
|
2014-09-24 07:59:08 +00:00
|
|
|
license = licenses.bsd3;
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-09-24 07:59:08 +00:00
|
|
|
maintainers = with maintainers; [
|
2019-10-07 14:44:58 +00:00
|
|
|
maggesi vbgl
|
2010-12-20 10:32:22 +00:00
|
|
|
];
|
2009-11-02 10:47:24 +00:00
|
|
|
};
|
|
|
|
}
|