Merge pull request #146081 from jyooru/fix/apkeep

apkeep: fix aarch64 build
This commit is contained in:
Domen Kožar 2021-11-15 06:38:37 -06:00 committed by GitHub
commit 2285978cf3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,6 +11,10 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "sha256-YFs2AOMGp0WNrceK14AnigZdJl+UsQdUchpxaI7HSXw=";
prePatch = ''
rm .cargo/config.toml
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];