summaryrefslogtreecommitdiffstats
path: root/pkgs/games
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-12-06 18:15:20 +0100
committerNaïm Favier <n@monade.li>2023-01-01 14:10:42 +0100
commit2c83122c1877b20728c8ae97faddbf2166f105cb (patch)
tree0a3e27d4852be242b7e1e5161491fbdd1f998184 /pkgs/games
parent94747ae8369bbc86984166d6ef7542b6371a015e (diff)
treewide: fix broken `meta` attributes
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/quake3/quake3e/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/quake3/quake3e/default.nix b/pkgs/games/quake3/quake3e/default.nix
index 5303d679be17..0c57c97bbe90 100644
--- a/pkgs/games/quake3/quake3e/default.nix
+++ b/pkgs/games/quake3/quake3e/default.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ pmiddend ];
- badPlatforms = [ platforms.aarch64 ];
+ badPlatforms = platforms.aarch64;
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
};