summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/liberasurecode/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/liberasurecode/default.nix')
-rw-r--r--pkgs/applications/misc/liberasurecode/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/misc/liberasurecode/default.nix b/pkgs/applications/misc/liberasurecode/default.nix
index 5910bc3eb532..f94496d0b125 100644
--- a/pkgs/applications/misc/liberasurecode/default.nix
+++ b/pkgs/applications/misc/liberasurecode/default.nix
@@ -23,6 +23,9 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace doc/doxygen.cfg.in \
--replace "GENERATE_MAN = NO" "GENERATE_MAN = YES"
+
+ substituteInPlace Makefile.am src/Makefile.am \
+ --replace "-Werror" ""
'';
nativeBuildInputs = [ autoreconfHook doxygen installShellFiles ];
@@ -30,9 +33,8 @@ stdenv.mkDerivation rec {
buildInputs = [ zlib ];
configureFlags = [
+ "--disable-werror"
"--enable-doxygen"
- ] ++ lib.optionals stdenv.cc.isClang [
- "CFLAGS=-Wno-error=strict-prototypes"
];
postInstall = ''