Unverified Commit 85f6d8fe authored by Grimmauld's avatar Grimmauld
Browse files

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
parent 1ad93cc7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
    done
  '';

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

  nativeBuildInputs =
    [