mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
camlp5: fix install with ocaml 4.04
The problem was that bytecode executables were shrinked. This closes #25367.
This commit is contained in:
parent
1fdc34b737
commit
017a723939
|
@ -24,6 +24,8 @@ stdenv.mkDerivation {
|
|||
|
||||
postInstall = "cp ${metafile} $out/lib/ocaml/${ocaml.version}/site-lib/camlp5/META";
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Preprocessor-pretty-printer for OCaml";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue