Unverified Commit 356c6dcd authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

Merge pull request #246375 from thillux/botan-cross-aarch64

botan: fix cross compilation on aarch64
parents 714bd4a3 bb2fd1be
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -29,12 +29,13 @@ stdenv.mkDerivation rec {
  patches = extraPatches;
  inherit postPatch;

  buildInputs = [ python3 bzip2 zlib gmp boost ]
  nativeBuildInputs = [ python3 ];
  buildInputs = [ bzip2 zlib gmp boost ]
    ++ lib.optionals stdenv.isDarwin [ CoreServices Security ];

  configurePhase = ''
    runHook preConfigure
    python configure.py --prefix=$out --with-bzip2 --with-zlib ${extraConfigureFlags}${lib.optionalString stdenv.cc.isClang " --cc=clang"}
    python configure.py --prefix=$out --with-bzip2 --with-zlib ${extraConfigureFlags}${lib.optionalString stdenv.cc.isClang " --cc=clang"} ${lib.optionalString stdenv.hostPlatform.isAarch64 " --cpu=aarch64"}
    runHook postConfigure
  '';