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:
commit
c29fd62b01
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue