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

37 lines
894 B
Nix
Raw Normal View History

{ stdenv, fetchzip, ocaml }:
stdenv.mkDerivation {
2019-09-21 03:35:39 +00:00
name = "camlp5-7.10";
2016-11-29 18:11:54 +00:00
src = fetchzip {
2019-09-21 03:35:39 +00:00
url = "https://github.com/camlp5/camlp5/archive/rel710.tar.gz";
sha256 = "1a1lgsc8350afdwmsznsys7m0c0cks4nw6irqz2f92g8g4vkk9b7";
};
buildInputs = [ ocaml ];
prefixKey = "-prefix ";
preConfigure = "configureFlagsArray=(--strict" +
2016-10-05 07:32:30 +00:00
" --libdir $out/lib/ocaml/${ocaml.version}/site-lib)";
buildFlags = "world.opt";
dontStrip = true;
2014-09-24 07:59:08 +00: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 07:59:08 +00:00
license = licenses.bsd3;
platforms = ocaml.meta.platforms or [];
2014-09-24 07:59:08 +00:00
maintainers = with maintainers; [
z77z vbgl
];
};
}