mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-26 01:51:37 +00:00
tests: stub more expected packages darwin (#6649)
Get ahead of random breakages blocking ci.
This commit is contained in:
parent
4e12151c9e
commit
5a6e5a59a4
1 changed files with 87 additions and 1 deletions
|
@ -61,27 +61,82 @@ let
|
||||||
};
|
};
|
||||||
in outer;
|
in outer;
|
||||||
|
|
||||||
|
# TODO: figure out stdenv stubbing so we don't have to do this
|
||||||
darwinBlacklist = let
|
darwinBlacklist = let
|
||||||
# List of packages that need to be scrubbed on Darwin
|
# List of packages that need to be scrubbed on Darwin
|
||||||
# Packages are scrubbed in linux and expected in test output
|
# Packages are scrubbed in linux and expected in test output
|
||||||
packagesToScrub = [
|
packagesToScrub = [
|
||||||
|
"aerc"
|
||||||
"alot"
|
"alot"
|
||||||
"antidote"
|
"antidote"
|
||||||
|
"aria2"
|
||||||
"atuin"
|
"atuin"
|
||||||
|
"autojump"
|
||||||
|
"bacon"
|
||||||
|
"bash"
|
||||||
"bash-completion"
|
"bash-completion"
|
||||||
|
"bat"
|
||||||
|
"borgmatic"
|
||||||
|
"bottom"
|
||||||
|
"broot"
|
||||||
|
"browserpass"
|
||||||
|
"btop"
|
||||||
"carapace"
|
"carapace"
|
||||||
|
"cava"
|
||||||
|
"cmus"
|
||||||
|
"comodoro"
|
||||||
|
"darcs"
|
||||||
|
"dircolors"
|
||||||
"delta"
|
"delta"
|
||||||
"direnv"
|
"direnv"
|
||||||
|
"earthly"
|
||||||
|
"emacs"
|
||||||
"espanso"
|
"espanso"
|
||||||
|
"fastfetch"
|
||||||
|
"feh"
|
||||||
|
"gallery-dl"
|
||||||
"gh"
|
"gh"
|
||||||
|
"gh-dash"
|
||||||
"ghostty"
|
"ghostty"
|
||||||
|
"git"
|
||||||
|
"git-cliff"
|
||||||
|
"git-credential-oauth"
|
||||||
|
"git-worktree-switcher"
|
||||||
"gnupg"
|
"gnupg"
|
||||||
|
"go"
|
||||||
"granted"
|
"granted"
|
||||||
|
"helix"
|
||||||
|
"himalaya"
|
||||||
|
"htop"
|
||||||
|
"hyfetch"
|
||||||
"i3status"
|
"i3status"
|
||||||
|
"irssi"
|
||||||
|
"jujutsu"
|
||||||
|
"joplin-desktop"
|
||||||
|
"jqp"
|
||||||
|
"k9s"
|
||||||
|
"kakoune"
|
||||||
|
"khal"
|
||||||
|
"khard"
|
||||||
"kitty"
|
"kitty"
|
||||||
|
"kubecolor"
|
||||||
|
"lapce"
|
||||||
|
"ledger"
|
||||||
|
"less"
|
||||||
"lesspipe"
|
"lesspipe"
|
||||||
|
"lf"
|
||||||
|
"lsd"
|
||||||
|
"lieer"
|
||||||
|
"mbsync"
|
||||||
|
"micro"
|
||||||
|
"mise"
|
||||||
|
"mpv"
|
||||||
"mu"
|
"mu"
|
||||||
|
"mujmap"
|
||||||
"msmtp"
|
"msmtp"
|
||||||
|
"ne"
|
||||||
|
"neomutt"
|
||||||
|
"neovide"
|
||||||
"nheko"
|
"nheko"
|
||||||
"nix"
|
"nix"
|
||||||
"nix-index"
|
"nix-index"
|
||||||
|
@ -90,16 +145,47 @@ let
|
||||||
"openstackclient"
|
"openstackclient"
|
||||||
"papis"
|
"papis"
|
||||||
"pay-respects"
|
"pay-respects"
|
||||||
|
"pet"
|
||||||
|
"pistol"
|
||||||
"pls"
|
"pls"
|
||||||
|
"poetry"
|
||||||
|
"powerline-go"
|
||||||
|
"pubs"
|
||||||
"pyenv"
|
"pyenv"
|
||||||
"sagemath"
|
"qcal"
|
||||||
|
"qutebrowser"
|
||||||
|
"ranger"
|
||||||
|
"rio"
|
||||||
|
"ripgrep"
|
||||||
|
"ruff"
|
||||||
|
"sage"
|
||||||
"sapling"
|
"sapling"
|
||||||
|
"sbt"
|
||||||
"scmpuff"
|
"scmpuff"
|
||||||
|
"senpai"
|
||||||
|
"sftpman"
|
||||||
|
"sioyek"
|
||||||
"sm64ex"
|
"sm64ex"
|
||||||
|
"spotify-player"
|
||||||
|
"starship"
|
||||||
|
"taskwarrior"
|
||||||
|
"tealdeer"
|
||||||
|
"texlive"
|
||||||
"thefuck"
|
"thefuck"
|
||||||
|
"thunderbird"
|
||||||
|
"tmate"
|
||||||
|
"topgrade"
|
||||||
|
"translate-shell"
|
||||||
|
"vifm"
|
||||||
|
"vim-vint"
|
||||||
|
"vscode"
|
||||||
|
"watson"
|
||||||
"wezterm"
|
"wezterm"
|
||||||
|
"yazi"
|
||||||
"yubikey-agent"
|
"yubikey-agent"
|
||||||
|
"zed-editor"
|
||||||
"zellij"
|
"zellij"
|
||||||
|
"zk"
|
||||||
"zplug"
|
"zplug"
|
||||||
"zsh"
|
"zsh"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Reference in a new issue