ocamlPackages.ppxfind: dontStrip for all versions

This commit is contained in:
Antonio Nuno Monteiro
2020-01-08 18:41:26 -08:00
committed by Mario Rodas
parent 4e222ab09d
commit b8c0e8b6b7

View File

@@ -1,4 +1,4 @@
{ lib, buildDunePackage, fetchurl, ocaml, ocaml-migrate-parsetree }:
{ stdenv, lib, buildDunePackage, fetchurl, ocaml, ocaml-migrate-parsetree }:
buildDunePackage (rec {
pname = "ppxfind";
@@ -12,6 +12,9 @@ buildDunePackage (rec {
buildInputs = [ ocaml-migrate-parsetree ];
# Don't run the native `strip' when cross-compiling.
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
meta = {
homepage = "https://github.com/diml/ppxfind";
description = "ocamlfind ppx tool";