From 24df57877604b7a57634ac33fbba501d9c21c3cf Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Fri, 9 Jan 2026 12:46:26 +0100 Subject: [PATCH] haskellPackages.zxcvbn-c: link against pkgs.zxcvbn-c --- pkgs/development/haskell-modules/configuration-nix.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 4da70c0a7a2f..fa0767896e69 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -1157,6 +1157,11 @@ builtins.intersectAttrs super { } ); + # Don't use vendored copy of zxcvbn-c + zxcvbn-c = addBuildDepends [ + pkgs.zxcvbn-c + ] (enableCabalFlag "use-shared-lib" super.zxcvbn-c); + # The test suite has undeclared dependencies on git. githash = dontCheck super.githash;