dwarf-fortress-unfuck: don't overwrite to null on none linux platforms

This commit is contained in:
Sandro Jäckel 2022-10-27 18:55:04 +02:00
parent 50d91e7871
commit cdfd73026a
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -63,10 +63,7 @@ let
inherit dwarf-fortress-unfuck;
};
# unfuck is linux-only right now, we will only use it there.
dwarf-fortress-unfuck =
if stdenv.isLinux then callPackage ./unfuck.nix { inherit dfVersion; }
else null;
dwarf-fortress-unfuck = callPackage ./unfuck.nix { inherit dfVersion; };
twbt = callPackage ./twbt { inherit dfVersion; };