From 1586c4b142e64b383178ee26884fb7d2a5afcfef Mon Sep 17 00:00:00 2001 From: andre Date: Sat, 25 Jan 2025 23:41:39 +0100 Subject: [PATCH] ardour: bump c++ standard to c++17 Fixes a build issue with boost. Additionally, C++11 will no longer be supported starting with Ardour 9.0. --- pkgs/applications/audio/ardour/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix index f923356b5604..b24da8fb3297 100644 --- a/pkgs/applications/audio/ardour/default.nix +++ b/pkgs/applications/audio/ardour/default.nix @@ -160,7 +160,7 @@ stdenv.mkDerivation rec { ] ++ lib.optionals videoSupport [ harvid xjadeo ]; wafConfigureFlags = [ - "--cxx11" + "--cxx17" "--docs" "--freedesktop" "--no-phone-home"