securefs: compile with clang
securefs always exits with an "invalid password" error when compiled with the latest GCC version. Upstream confirmed the fix is to build with clang: https://github.com/netheril96/securefs/issues/124#issuecomment-962618957
This commit is contained in:
@@ -10528,7 +10528,9 @@ with pkgs;
|
||||
|
||||
secp256k1 = callPackage ../tools/security/secp256k1 { };
|
||||
|
||||
securefs = callPackage ../tools/filesystems/securefs { };
|
||||
securefs = callPackage ../tools/filesystems/securefs {
|
||||
stdenv = clangStdenv;
|
||||
};
|
||||
|
||||
seehecht = callPackage ../tools/text/seehecht { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user