apkeep: fix aarch64 build

This commit is contained in:
Joel 2021-11-15 15:38:28 +10:00
parent 9c542ec266
commit 5ee42fa3f0
No known key found for this signature in database
GPG Key ID: 18550BD205E9EF64

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 ];