postman: fix notarization failure on macOS 13

This commit is contained in:
Randy Eckenrode 2023-04-16 20:56:32 -04:00
parent 45dc78cb0a
commit d8b461be95
No known key found for this signature in database
GPG Key ID: 64C1CD4EC2A600D9

View File

@ -33,6 +33,11 @@ stdenvNoCC.mkDerivation {
nativeBuildInputs = [ unzip ]; nativeBuildInputs = [ unzip ];
# Postman is notarized on macOS. Running the fixup phase will change the shell scripts embedded
# in the bundle, which causes the notarization check to fail on macOS 13+.
# See https://eclecticlight.co/2022/06/17/app-security-changes-coming-in-ventura/ for more information.
dontFixup = true;
sourceRoot = appName; sourceRoot = appName;
installPhase = '' installPhase = ''