about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorTristan Ross2024-08-09 17:35:17 -0700
committerAlyssa Ross2024-08-10 08:34:57 +0200
commit527de075a3bf8a3ad438db1014763f0dda643a37 (patch)
treefd35f1da9d7fcb59a0c4c73150741e703c2160d0 /lib
parent0de8c9af78e6778fef7f145d43e35e4ccfa5dd23 (diff)
lib.systems: mark windows as having shared libs
Diffstat (limited to 'lib')
-rw-r--r--lib/systems/default.nix2
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;