2019-03-30 15:31:38 +00:00
|
|
|
{ stdenv, fetchzip, ocaml }:
|
2009-11-02 10:47:24 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2019-03-30 15:31:38 +00:00
|
|
|
name = "camlp5-7.07";
|
2009-11-02 10:47:24 +00:00
|
|
|
|
2016-11-29 18:11:54 +00:00
|
|
|
src = fetchzip {
|
2019-03-30 15:31:38 +00:00
|
|
|
url = "https://github.com/camlp5/camlp5/archive/rel707.tar.gz";
|
|
|
|
sha256 = "1c8v45553ccbqha2ypfranqlgw06rr5wjr2hlnrx5bf9jfq0h0dn";
|
2009-11-02 10:47:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ocaml ];
|
|
|
|
|
|
|
|
prefixKey = "-prefix ";
|
|
|
|
|
2018-11-14 07:25:54 +00:00
|
|
|
preConfigure = "configureFlagsArray=(--strict" +
|
2016-10-05 08:32:30 +01:00
|
|
|
" --libdir $out/lib/ocaml/${ocaml.version}/site-lib)";
|
2009-11-02 10:47:24 +00:00
|
|
|
|
|
|
|
buildFlags = "world.opt";
|
|
|
|
|
2017-05-02 16:12:17 +01:00
|
|
|
dontStrip = true;
|
|
|
|
|
2014-09-24 08:59:08 +01:00
|
|
|
meta = with stdenv.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.
|
|
|
|
'';
|
2016-11-29 18:11:54 +00: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; [
|
|
|
|
z77z vbgl
|
2010-12-20 10:32:22 +00:00
|
|
|
];
|
2009-11-02 10:47:24 +00:00
|
|
|
};
|
|
|
|
}
|