nixpkgs/pkgs/development/tools/ocaml/camlp5/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

2016-11-29 18:11:54 +00:00
{ stdenv, fetchzip, ocaml, transitional ? false }:
let
metafile = ./META;
in
stdenv.mkDerivation {
2018-02-25 10:24:50 +00:00
name = "camlp5${if transitional then "_transitional" else ""}-7.05";
2016-11-29 18:11:54 +00:00
src = fetchzip {
2018-02-25 10:24:50 +00:00
url = https://github.com/camlp5/camlp5/archive/rel705.tar.gz;
sha256 = "16igfyjl2jja4f1mibjfzk0c2jr09nxsz6lb63x1jkccmy6430q2";
};
buildInputs = [ ocaml ];
2018-02-25 10:24:50 +00:00
postPatch = ''
for p in compile/compile.sh config/Makefile.tpl test/Makefile test/check_ocaml_versions.sh
do
substituteInPlace $p --replace '/bin/rm' rm
done
'';
prefixKey = "-prefix ";
preConfigure = "configureFlagsArray=(" + (if transitional then "--transitional" else "--strict") +
2016-10-05 08:32:30 +01:00
" --libdir $out/lib/ocaml/${ocaml.version}/site-lib)";
buildFlags = "world.opt";
2016-10-05 08:32:30 +01:00
postInstall = "cp ${metafile} $out/lib/ocaml/${ocaml.version}/site-lib/camlp5/META";
dontStrip = true;
2014-09-24 08:59:08 +01:00
meta = with stdenv.lib; {
description = "Preprocessor-pretty-printer for OCaml";
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;
platforms = ocaml.meta.platforms or [];
2014-09-24 08:59:08 +01:00
maintainers = with maintainers; [
z77z vbgl
];
};
}