From e597af558361ee4a917eb1ad4b2809204ca244f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Mancilla?= Date: Wed, 28 Aug 2024 19:43:53 -0400 Subject: [PATCH] zeromq: enable curve support --- pkgs/development/libraries/zeromq/4.x.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/zeromq/4.x.nix b/pkgs/development/libraries/zeromq/4.x.nix index c5738c77a08a..6801eddc178f 100644 --- a/pkgs/development/libraries/zeromq/4.x.nix +++ b/pkgs/development/libraries/zeromq/4.x.nix @@ -40,6 +40,8 @@ stdenv.mkDerivation (finalAttrs: { doCheck = false; # fails all the tests (ctest) cmakeFlags = [ + (lib.cmakeBool "WITH_LIBSODIUM" true) + (lib.cmakeBool "ENABLE_CURVE" true) (lib.cmakeBool "ENABLE_DRAFTS" enableDrafts) ];