summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/ocamlmod
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/ocamlmod
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/ocamlmod')
-rw-r--r--pkgs/development/tools/ocaml/ocamlmod/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/tools/ocaml/ocamlmod/default.nix b/pkgs/development/tools/ocaml/ocamlmod/default.nix
index 0b92a45153c..b24be7ba628 100644
--- a/pkgs/development/tools/ocaml/ocamlmod/default.nix
+++ b/pkgs/development/tools/ocaml/ocamlmod/default.nix
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
   buildPhase     = "ocaml setup.ml -build";
   installPhase   = "ocaml setup.ml -install";
 
+  dontStrip = true;
+
   meta = {
     homepage = http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod;
     description = "Generate OCaml modules from source files";