Skip to content

Commit eb634fb

Browse files
committedMar 22, 2025
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] #392175 [2] https://hydra.nixos.org/build/292468814/log
1 parent 1ad93cc commit eb634fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pkgs/tools/security/ecryptfs/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
5656
done
5757
'';
5858

59-
configureFlags = lib.optionals (!enablePython) [ "--disable-pywrap" ];
59+
configureFlags = lib.optionals (!enablePython) [ "--disable-pywrap --disable-openssl" ];
6060

6161
nativeBuildInputs =
6262
[

0 commit comments

Comments
 (0)
Failed to load comments.