diff options
author | Tristan Ross | 2024-08-09 17:35:17 -0700 |
---|---|---|
committer | Alyssa Ross | 2024-08-10 08:34:57 +0200 |
commit | 527de075a3bf8a3ad438db1014763f0dda643a37 (patch) | |
tree | fd35f1da9d7fcb59a0c4c73150741e703c2160d0 /lib | |
parent | 0de8c9af78e6778fef7f145d43e35e4ccfa5dd23 (diff) |
lib.systems: mark windows as having shared libs
Diffstat (limited to 'lib')
-rw-r--r-- | lib/systems/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/systems/default.nix b/lib/systems/default.nix index 0b8aeda208e3..e8384a6938fc 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -179,7 +179,7 @@ let hasSharedLibraries = with final; (isAndroid || isGnu || isMusl # Linux (allows multiple libcs) || isDarwin || isSunOS || isOpenBSD || isFreeBSD || isNetBSD # BSDs - || isCygwin || isMinGW # Windows + || isCygwin || isMinGW || isWindows # Windows || isWasm # WASM ) && !isStatic; |