mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
nixos/terminfo: ignore packages with incompatible platforms in all-terminfo test
This commit is contained in:
parent
7d355349fc
commit
b7f21582d0
1 changed files with 2 additions and 1 deletions
|
@ -22,7 +22,8 @@
|
|||
&& lib.isDerivation o.value
|
||||
&& o.value ? outputs
|
||||
&& builtins.elem "terminfo" o.value.outputs
|
||||
&& !o.value.meta.broken;
|
||||
&& !o.value.meta.broken
|
||||
&& lib.meta.availableOn pkgs.stdenv.hostPlatform o.value;
|
||||
terminfos = lib.filterAttrs infoFilter pkgs;
|
||||
excludedTerminfos = lib.filterAttrs (
|
||||
_: drv: !(builtins.elem drv.terminfo config.environment.systemPackages)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue