summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/camlp4
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 21:18:02 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 21:18:42 +0100
commitb2a4eb839a530f84a0b522840a6a4cac51adcba1 (patch)
treef7376c041908cff7bab1b54c7d5fc68e529a7acc /pkgs/development/tools/ocaml/camlp4
parent9dbeca2240591bf690b5bce6b8fb57a2521b6c80 (diff)
downloadnixpkgs-b2a4eb839a530f84a0b522840a6a4cac51adcba1.tar
nixpkgs-b2a4eb839a530f84a0b522840a6a4cac51adcba1.tar.gz
nixpkgs-b2a4eb839a530f84a0b522840a6a4cac51adcba1.tar.bz2
nixpkgs-b2a4eb839a530f84a0b522840a6a4cac51adcba1.tar.lz
nixpkgs-b2a4eb839a530f84a0b522840a6a4cac51adcba1.tar.xz
nixpkgs-b2a4eb839a530f84a0b522840a6a4cac51adcba1.tar.zst
nixpkgs-b2a4eb839a530f84a0b522840a6a4cac51adcba1.zip
ppx_tools, camlp4, ocamlify, ocamlmod: don’t strip binaries
Diffstat (limited to 'pkgs/development/tools/ocaml/camlp4')
-rw-r--r--pkgs/development/tools/ocaml/camlp4/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/tools/ocaml/camlp4/default.nix b/pkgs/development/tools/ocaml/camlp4/default.nix
index a257a88287c..cedd35ae6ad 100644
--- a/pkgs/development/tools/ocaml/camlp4/default.nix
+++ b/pkgs/development/tools/ocaml/camlp4/default.nix
@@ -43,6 +43,8 @@ stdenv.mkDerivation rec {
 
   installTargets = "install install-META";
 
+  dontStrip = true;
+
   meta = with stdenv.lib; {
     description = "A software system for writing extensible parsers for programming languages";
     homepage = https://github.com/ocaml/camlp4;