From 5d1c8cfa1e24cd133316723ceb15db9b59b5a261 Mon Sep 17 00:00:00 2001 From: Jelle Licht Date: Fri, 27 Mar 2026 12:59:54 +0100 Subject: [PATCH] gnu: node-openzwave-shared: Fix compilation for new versions of node. * gnu/packages/zwave.scm (node-openzwave-shared):[arguments]<#:phases>:Adjust patch-compiler phase use std=c++20 to allow compilation with node versions 24 and up. Change-Id: I04b4657c025d233f4abbbc4d3829ca44351fdae3 --- gnu/packages/zwave.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/zwave.scm b/gnu/packages/zwave.scm index a30199ec02..e74e8eb8b8 100644 --- a/gnu/packages/zwave.scm +++ b/gnu/packages/zwave.scm @@ -116,7 +116,7 @@ knowledge of the Z-Wave protocol.") (lambda _ (substitute* "binding.gyp" (("std=c\\+\\+11") - "std=c++17")))) + "std=c++20")))) (replace 'build ;; For some reason, `npm install` doesn't build ;; the addon automatically, so we do it explicitly here.