about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-11-15 23:23:15 +0100
committerNaïm Favier <n@monade.li>2022-11-16 11:59:39 +0100
commit67aacbb937fc35710cf7101d42d1f1aa5fcbed72 (patch)
tree3b65c211f3af36db2f62451540bf5647e81f79d9 /pkgs/games
parentc91f68c3d88e646e5d1edb71f8c322620bafa644 (diff)
dwarf-therapist: restrict platforms to x86
Avoid trying to build for aarch64 on Hydra. Dwarf Fortress only runs on x86.
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/dwarf-fortress/dwarf-therapist/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
index ec765e71158e3..42dd74a766b2f 100644
--- a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
+++ b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
     description = "Tool to manage dwarves in a running game of Dwarf Fortress";
     maintainers = with maintainers; [ abbradar bendlas numinit jonringer ];
     license = licenses.mit;
-    platforms = platforms.unix;
+    platforms = platforms.x86;
     homepage = "https://github.com/Dwarf-Therapist/Dwarf-Therapist";
   };
 }