fix(pngpaste)!: only enable for host && target aarch64-darwin

Does not build for `x86_64-darwin`
This commit is contained in:
reo101 2024-08-27 23:33:36 +03:00
parent 26e58b8f24
commit b4eb1ed96d
Signed by: reo101
GPG key ID: 675AA7EF13964ACB

View file

@ -1,2 +1,3 @@
{ lib, hostPlatform, targetPlatform, ... }:
hostPlatform.isDarwin && targetPlatform.isDarwin
hostPlatform.isDarwin && hostPlatform.isAarch64 &&
targetPlatform.isDarwin && targetPlatform.isAarch64