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 {
|
|
|
|
|
2017-10-30 02:08:20 +01:00
|
|
|
name = "camlp5${if transitional then "_transitional" else ""}-7.03";
|
2009-11-02 11:47:24 +01:00
|
|
|
|
2016-11-29 19:11:54 +01:00
|
|
|
src = fetchzip {
|
2017-10-30 02:08:20 +01:00
|
|
|
url = https://github.com/camlp5/camlp5/archive/rel703.tar.gz;
|
|
|
|
sha256 = "0bwzhp4qjypfa0x8drp8w434dfixm1nzrm6pcy9s5akpmqvb50a8";
|
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
|
|
|
|
2017-05-02 17:12:17 +02:00
|
|
|
dontStrip = true;
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|