mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 11:30:35 +08:00
nix.perl-bindings: fix build on aarch64-darwin
This commit is contained in:
@@ -213,7 +213,7 @@ self = stdenv.mkDerivation {
|
||||
passthru = {
|
||||
inherit aws-sdk-cpp boehmgc;
|
||||
|
||||
perl-bindings = perl.pkgs.toPerlModule (callPackage ./nix-perl.nix { nix = self; });
|
||||
perl-bindings = perl.pkgs.toPerlModule (callPackage ./nix-perl.nix { nix = self; inherit Security; });
|
||||
};
|
||||
};
|
||||
in self
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, perl
|
||||
, pkg-config
|
||||
, curl
|
||||
@@ -8,6 +9,7 @@
|
||||
, autoreconfHook
|
||||
, autoconf-archive
|
||||
, nlohmann_json
|
||||
, Security
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
@@ -16,6 +18,8 @@ stdenv.mkDerivation {
|
||||
|
||||
postUnpack = "sourceRoot=$sourceRoot/perl";
|
||||
|
||||
buildInputs = lib.optional (stdenv.isDarwin) Security;
|
||||
|
||||
# This is not cross-compile safe, don't have time to fix right now
|
||||
# but noting for future travellers.
|
||||
nativeBuildInputs = [
|
||||
|
||||
Reference in New Issue
Block a user