1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

Merge pull request #226560 from reckenrode/postman-fix

postman: fix notarization failure on macOS 13
This commit is contained in:
Weijia Wang 2023-04-18 23:55:24 +03:00 committed by GitHub
commit c29fd62b01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,6 +33,11 @@ stdenvNoCC.mkDerivation {
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;
installPhase = ''