summary refs log tree commit diff
path: root/pkgs/servers/fcgiwrap/default.nix
diff options
context:
space:
mode:
authortilpner <till@hoeppner.ws>2018-03-11 15:58:26 +0100
committertilpner <till@hoeppner.ws>2018-03-11 15:58:26 +0100
commita758ae44cfd0c097073b1dff008baf96d9ad94b3 (patch)
treeca297130fbe45278e318e06e383746c0b6fe476e /pkgs/servers/fcgiwrap/default.nix
parentec2981ae3dcb63fc1f5a65f1f8b512d27d85a3bb (diff)
downloadnixpkgs-a758ae44cfd0c097073b1dff008baf96d9ad94b3.tar
nixpkgs-a758ae44cfd0c097073b1dff008baf96d9ad94b3.tar.gz
nixpkgs-a758ae44cfd0c097073b1dff008baf96d9ad94b3.tar.bz2
nixpkgs-a758ae44cfd0c097073b1dff008baf96d9ad94b3.tar.lz
nixpkgs-a758ae44cfd0c097073b1dff008baf96d9ad94b3.tar.xz
nixpkgs-a758ae44cfd0c097073b1dff008baf96d9ad94b3.tar.zst
nixpkgs-a758ae44cfd0c097073b1dff008baf96d9ad94b3.zip
fcgiwrap: don't error on implicit fallthrough
This errored since ca8aa5d, but should be safe.
Warning is left on (instead of completely disabled),
to not hide potential other fallthroughs if someone
was to make changes to fcgiwrap with this package.
Diffstat (limited to 'pkgs/servers/fcgiwrap/default.nix')
-rw-r--r--pkgs/servers/fcgiwrap/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/servers/fcgiwrap/default.nix b/pkgs/servers/fcgiwrap/default.nix
index 84c24e68478..a1ec3a7deb0 100644
--- a/pkgs/servers/fcgiwrap/default.nix
+++ b/pkgs/servers/fcgiwrap/default.nix
@@ -9,6 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "07y6s4mm86cv7p1ljz94sxnqa89y9amn3vzwsnbq5hrl4vdy0zac";
   };
 
+  NIX_CFLAGS_COMPILE = "-Wno-error=implicit-fallthrough";
   configureFlags = [ "--with-systemd" "--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];