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:
Sylvain Fankhauser
2022-08-01 21:04:10 +02:00
parent 7f908acf19
commit a87cd27054
+3 -1
View File
@@ -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 { };