Skip to content

Conversation

@hamishmack
Copy link
Collaborator

Fixes #2312

@hamishmack hamishmack merged commit 26acfef into master Jun 9, 2025
@thomasjm
Copy link
Contributor

Hi @hamishmack -- there are a couple other cases of irregular capitalization that need to be handled to fully fix #2312.

I think the following cases need to be added to the fixSystem function:

fixSystem "isHpux" = "isHPUX"
fixSystem "isIos" = "isIOS"
fixSystem "isIrix" = "isIRIX"

I'm looking at the values here:

os = {
# OSs
isLinux = false;
isWindows = false;
isOsx = false;
isIos = false;
isFreebsd = false;
isOpenbsd = false;
isNetbsd = false;
isDragonFly = false;
isSolaris = false;
isAix = false;
isHPUX = false;
isIRIX = false;
isHalvm = false;
isHurd = false;
isIOS = false;
isAndroid = false;
isGhcjs = false;
isWasi = false;
};

I tried to do this myself but it looks like I'd have to deploy a new nix-tools to test it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

isDragonfly instead of isDragonFly causes vty-crossplatform to fail to build

3 participants