2016-11-29 19:11:54 +01:00
|
|
|
{ stdenv, fetchzip, ocaml, transitional ? false }:
|
2009-11-02 11:47:24 +01:00
|
|
|
|
|
|
|
let
|
2010-12-20 11:32:22 +01:00
|
|
|
metafile = ./META;
|
2009-11-02 11:47:24 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2016-11-29 19:11:54 +01:00
|
|
|
name = "camlp5${if transitional then "_transitional" else ""}-6.17";
|
2009-11-02 11:47:24 +01:00
|
|
|
|
2016-11-29 19:11:54 +01:00
|
|
|
src = fetchzip {
|
|
|
|
url = https://github.com/camlp5/camlp5/archive/rel617.tar.gz;
|
|
|
|
sha256 = "0finmr6y0lyd7mnl61kmvwd32cmmf64m245vdh1iy0139rxf814c";
|
2009-11-02 11:47:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ocaml ];
|
|
|
|
|
|
|
|
prefixKey = "-prefix ";
|
|
|
|
|
2010-12-20 11:32:22 +01:00
|
|
|
preConfigure = "configureFlagsArray=(" + (if transitional then "--transitional" else "--strict") +
|
2016-10-05 09:32:30 +02:00
|
|
|
" --libdir $out/lib/ocaml/${ocaml.version}/site-lib)";
|
2009-11-02 11:47:24 +01:00
|
|
|
|
|
|
|
buildFlags = "world.opt";
|
|
|
|
|
2016-10-05 09:32:30 +02:00
|
|
|
postInstall = "cp ${metafile} $out/lib/ocaml/${ocaml.version}/site-lib/camlp5/META";
|
2010-12-20 11:32:22 +01:00
|
|
|
|
2014-09-24 09:59:08 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-11-02 12:44:27 +01:00
|
|
|
description = "Preprocessor-pretty-printer for OCaml";
|
2009-11-02 11:47:24 +01:00
|
|
|
longDescription = ''
|
|
|
|
Camlp5 is a preprocessor and pretty-printer for OCaml programs.
|
|
|
|
It also provides parsing and printing tools.
|
|
|
|
'';
|
2016-11-29 19:11:54 +01:00
|
|
|
homepage = https://camlp5.github.io/;
|
2014-09-24 09:59:08 +02:00
|
|
|
license = licenses.bsd3;
|
2015-12-24 18:49:07 +01:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-09-24 09:59:08 +02:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
z77z vbgl
|
2010-12-20 11:32:22 +01:00
|
|
|
];
|
2009-11-02 11:47:24 +01:00
|
|
|
};
|
|
|
|
}
|