2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchzip, 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-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
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2021-01-02 09:39:15 +00:00
|
|
|
name = "camlp5-7.14";
|
2009-11-02 10:47:24 +00:00
|
|
|
|
2016-11-29 18:11:54 +00:00
|
|
|
src = fetchzip {
|
2021-01-02 09:39:15 +00:00
|
|
|
url = "https://github.com/camlp5/camlp5/archive/rel714.tar.gz";
|
|
|
|
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 16:12:17 +01: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 02:11:51 +01:00
|
|
|
homepage = "https://camlp5.github.io/";
|
2014-09-24 08:59:08 +01:00
|
|
|
license = licenses.bsd3;
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-09-24 08:59:08 +01:00
|
|
|
maintainers = with maintainers; [
|
2019-10-07 15:44:58 +01:00
|
|
|
maggesi vbgl
|
2010-12-20 10:32:22 +00:00
|
|
|
];
|
2009-11-02 10:47:24 +00:00
|
|
|
};
|
|
|
|
}
|