dwarf-therapist: restrict platforms to x86

Avoid trying to build for aarch64 on Hydra. Dwarf Fortress only runs on x86.
This commit is contained in:
Naïm Favier
2022-11-16 11:59:39 +01:00
parent c91f68c3d8
commit 67aacbb937
@@ -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";
};
}