From a722d04617fc670306cbe931240ee04afea11205 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Wed, 11 May 2022 11:46:21 +0200 Subject: [PATCH] mini-httpd: fix the build Moved back to C++14 where dynamic exception specifications are deprecated but still present. ZHF: #172160 --- pkgs/servers/http/mini-httpd/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/servers/http/mini-httpd/default.nix b/pkgs/servers/http/mini-httpd/default.nix index 81a8228b027..258eacf768c 100644 --- a/pkgs/servers/http/mini-httpd/default.nix +++ b/pkgs/servers/http/mini-httpd/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + NIX_CFLAGS_COMPILE = [ "-std=c++14" ]; + meta = { homepage = "http://mini-httpd.nongnu.org/"; description = "minimalistic high-performance web server";