mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
ocamlPackages.ppxfind: dontStrip for all versions
This commit is contained in:
parent
4e222ab09d
commit
b8c0e8b6b7
1 changed files with 4 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue