From 85f6d8fe52776a0f61072fe50fec9674ef2234eb Mon Sep 17 00:00:00 2001 From: Grimmauld Date: Sat, 22 Mar 2025 21:11:00 +0100 Subject: [PATCH] ecryptfs: disable openssl module to fix build This seems to have been important, as it was a channel blocker until recently [1]. The particular failure [2] was weird in the sense incorrect/incomplete C headers were pulled in. Disabling the openssl module seems to fix the build. OpenSSL was not listed as any sort of dependency, so it probably was not used anyways. [1] https://github.com/NixOS/nixpkgs/pull/392175 [2] https://hydra.nixos.org/build/292468814/log --- pkgs/tools/security/ecryptfs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/ecryptfs/default.nix b/pkgs/tools/security/ecryptfs/default.nix index 4849d1f81e36..2d94a4a27ba3 100644 --- a/pkgs/tools/security/ecryptfs/default.nix +++ b/pkgs/tools/security/ecryptfs/default.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { done ''; - configureFlags = lib.optionals (!enablePython) [ "--disable-pywrap" ]; + configureFlags = [ " --disable-openssl" ] ++ lib.optionals (!enablePython) [ "--disable-pywrap" ]; nativeBuildInputs = [