recutils: disable Clang "format" hardening
Remove the -Werror=format-security compiler option when using Clang, because recutils does not build with it enabled.
This commit is contained in:
parent
d97854619f
commit
3ece875b60
1 changed files with 2 additions and 0 deletions
|
@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
|
||||||
hash = "sha256-YwFZKwAgwUtFZ1fvXUNNSfYCe45fOkmdEzYvIFxIbg4=";
|
hash = "sha256-YwFZKwAgwUtFZ1fvXUNNSfYCe45fOkmdEzYvIFxIbg4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hardeningDisable = lib.optional stdenv.cc.isClang "format";
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
curl
|
curl
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue