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