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

41 lines
1.1 KiB
Nix
Raw Normal View History

{stdenv, fetchurl, ocaml, transitional ? false}:
let
metafile = ./META;
in
stdenv.mkDerivation {
2016-04-30 07:18:19 -07:00
name = "camlp5${if transitional then "_transitional" else ""}-6.16";
src = fetchurl {
2016-04-30 07:18:19 -07:00
url = http://camlp5.gforge.inria.fr/distrib/src/camlp5-6.16.tgz;
sha256 = "1caqa2rl7rav7pfwv1l1j0j18yr1qzyyqz0wa9519x91ckznqi7x";
};
buildInputs = [ ocaml ];
prefixKey = "-prefix ";
preConfigure = "configureFlagsArray=(" + (if transitional then "--transitional" else "--strict") +
2016-10-05 00:32:30 -07:00
" --libdir $out/lib/ocaml/${ocaml.version}/site-lib)";
buildFlags = "world.opt";
2016-10-05 00:32:30 -07:00
postInstall = "cp ${metafile} $out/lib/ocaml/${ocaml.version}/site-lib/camlp5/META";
2014-09-24 00:59:08 -07: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.
'';
2012-09-12 12:54:00 -07:00
homepage = http://pauillac.inria.fr/~ddr/camlp5/;
2014-09-24 00:59:08 -07:00
license = licenses.bsd3;
platforms = ocaml.meta.platforms or [];
2014-09-24 00:59:08 -07:00
maintainers = with maintainers; [
z77z vbgl
];
};
}