From b2a4eb839a530f84a0b522840a6a4cac51adcba1 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 26 Feb 2017 21:18:02 +0100 Subject: [PATCH] =?UTF-8?q?ppx=5Ftools,=20camlp4,=20ocamlify,=20ocamlmod:?= =?UTF-8?q?=20don=E2=80=99t=20strip=20binaries?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/ppx_tools/default.nix | 2 ++ pkgs/development/tools/ocaml/camlp4/default.nix | 2 ++ pkgs/development/tools/ocaml/ocamlify/default.nix | 2 ++ pkgs/development/tools/ocaml/ocamlmod/default.nix | 2 ++ 4 files changed, 8 insertions(+) diff --git a/pkgs/development/ocaml-modules/ppx_tools/default.nix b/pkgs/development/ocaml-modules/ppx_tools/default.nix index 62aa97de5fa..ddc3dec898d 100644 --- a/pkgs/development/ocaml-modules/ppx_tools/default.nix +++ b/pkgs/development/ocaml-modules/ppx_tools/default.nix @@ -26,6 +26,8 @@ in createFindlibDestdir = true; + dontStrip = true; + meta = with stdenv.lib; { description = "Tools for authors of ppx rewriters"; homepage = http://www.lexifi.com/ppx_tools; 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; diff --git a/pkgs/development/tools/ocaml/ocamlify/default.nix b/pkgs/development/tools/ocaml/ocamlify/default.nix index d5dd0c19d98..2876464ab50 100644 --- a/pkgs/development/tools/ocaml/ocamlify/default.nix +++ b/pkgs/development/tools/ocaml/ocamlify/default.nix @@ -14,6 +14,8 @@ stdenv.mkDerivation { 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"; 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";