about summary refs log tree commit diff
path: root/pkgs/top-level/perl-packages.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-03-12 16:52:13 -0400
committerGitHub <noreply@github.com>2019-03-12 16:52:13 -0400
commit573a6930a0380b1061ad927705c83e8ccf92a096 (patch)
treee5d2b392b0f97fd6ba7adf29c95ba9a45145a01d /pkgs/top-level/perl-packages.nix
parent2c7b8769f3525548b3c53b2279a8e3e4a1b87940 (diff)
parent33ef2829b663945d0d7ae702a6f5f5f342760401 (diff)
downloadnixlib-573a6930a0380b1061ad927705c83e8ccf92a096.tar
nixlib-573a6930a0380b1061ad927705c83e8ccf92a096.tar.gz
nixlib-573a6930a0380b1061ad927705c83e8ccf92a096.tar.bz2
nixlib-573a6930a0380b1061ad927705c83e8ccf92a096.tar.lz
nixlib-573a6930a0380b1061ad927705c83e8ccf92a096.tar.xz
nixlib-573a6930a0380b1061ad927705c83e8ccf92a096.tar.zst
nixlib-573a6930a0380b1061ad927705c83e8ccf92a096.zip
Merge pull request #56019 from illegalprime/fix/perlPackages.TermReadKey-cross
perlPackages.TermReadKey: add workarounds for cross compilation
Diffstat (limited to 'pkgs/top-level/perl-packages.nix')
-rw-r--r--pkgs/top-level/perl-packages.nix19
1 files changed, 18 insertions, 1 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index e409895e8dad..85ad62cfc005 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -5,7 +5,8 @@
    for each package in a separate file: the call to the function would
    be almost as much code as the function itself. */
 
-{config, pkgs, fetchurl, fetchFromGitHub, stdenv, gnused, perl, overrides}:
+{config, pkgs, fetchurl, fetchFromGitHub, stdenv, gnused, perl, overrides,
+  buildPackages}:
 
 # cpan2nix assumes that perl-packages.nix will be used only with perl 5.28.1 or above
 assert stdenv.lib.versionAtLeast perl.version "5.28.1";
@@ -14634,6 +14635,22 @@ let
       url = "mirror://cpan/authors/id/J/JS/JSTOWE/${name}.tar.gz";
       sha256 = "143jlibah1g14bym7sj3gphvqkpj1w4vn7sqc4vc62jpviw5hr2s";
     };
+    cross = stdenv.hostPlatform != stdenv.buildPlatform;
+
+    # use native libraries from the host when running build commands
+    postConfigure = if cross then let
+      host_perl = buildPackages.perl;
+      host_self = buildPackages.perlPackages.TermReadKey;
+      perl_lib = "${host_perl}/lib/perl5/${host_perl.version}";
+      self_lib = "${host_self}/lib/perl5/site_perl/${host_perl.version}";
+    in ''
+      sed -ie 's|"-I$(INST_ARCHLIB)"|"-I${perl_lib}" "-I${self_lib}"|g' Makefile
+    '' else null;
+
+    # TermReadKey uses itself in the build process
+    nativeBuildInputs = if cross then [
+      buildPackages.perlPackages.TermReadKey
+    ] else [];
   };
 
   TermReadLineGnu = buildPerlPackage rec {