fix(darwin): use correct brew cask args

This commit is contained in:
winston 2023-02-20 08:47:04 +01:00
parent 680ad3d03e
commit e36a2602a8
Signed by: winston
GPG key ID: 3786770EDBC2B481

View file

@ -32,6 +32,10 @@
inherit name; inherit name;
args = {require_sha = false;}; args = {require_sha = false;};
}; };
noQuarantine = name: {
inherit name;
args = {no_quarantine = true;};
};
in [ in [
"1password" "1password"
"alfred" "alfred"
@ -39,7 +43,6 @@
"blender" "blender"
"discord" "discord"
"docker" "docker"
"easy-move-plus-resize"
"firefox" "firefox"
"imageoptim" "imageoptim"
"insomnia" "insomnia"
@ -57,23 +60,17 @@
"uninstallpkg" "uninstallpkg"
"utm" "utm"
"yubico-yubikey-manager" "yubico-yubikey-manager"
(noQuarantine "easy-move-plus-resize")
# casks without shasums (noQuarantine "eloston-chromium")
(skipSha "affinity-designer") (skipSha "affinity-designer")
(skipSha "affinity-photo") (skipSha "affinity-photo")
(skipSha "affinity-publisher") (skipSha "affinity-publisher")
(skipSha "sizzy") (skipSha "sizzy")
# community builds needing to skip quarantine
{
name = "eloston-chromium";
args = {no_quarantine = true;};
}
# drivers # drivers
"elgato-wave-link" "elgato-wave-link"
"uhk-agent" "uhk-agent"
"vial" (noQuarantine "vial")
]; ];
taps = [ taps = [
"homebrew/cask" "homebrew/cask"