Skip to content

Commit 85f6d8f

Browse files
committed
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] NixOS#392175 [2] https://hydra.nixos.org/build/292468814/log
1 parent 1ad93cc commit 85f6d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/tools/security/ecryptfs/default.nix

Lines changed: 1 addition & 1 deletion
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 = [ " --disable-openssl" ] ++ lib.optionals (!enablePython) [ "--disable-pywrap" ];
6060

6161
nativeBuildInputs =
6262
[

0 commit comments

Comments
 (0)