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
This commit is contained in:
Grimmauld
2025-03-23 08:52:40 +01:00
parent 1ad93cc74e
commit 85f6d8fe52
+1 -1
View File
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
done
'';
configureFlags = lib.optionals (!enablePython) [ "--disable-pywrap" ];
configureFlags = [ " --disable-openssl" ] ++ lib.optionals (!enablePython) [ "--disable-pywrap" ];
nativeBuildInputs =
[