about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-02-20 17:36:06 +0200
committerArtturin <Artturin@artturin.com>2023-02-22 21:23:05 +0200
commit3251013cc149d535d857e6bca6da28a61bf81faa (patch)
treed12aa6990e978de8c9c1e2fa6e618319955f3299 /pkgs/applications/office
parent226e14914512d33cee00543cd947cf74d50a1258 (diff)
treewide: env.NIX_CFLAGS_COMPILE use toString on result of optionals
env values must be strings
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/gnucash/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/office/gnucash/default.nix b/pkgs/applications/office/gnucash/default.nix
index 9a56619d8b70f..65a2d579d3f7b 100644
--- a/pkgs/applications/office/gnucash/default.nix
+++ b/pkgs/applications/office/gnucash/default.nix
@@ -80,10 +80,10 @@ stdenv.mkDerivation rec {
   # guile warning
   GUILE_AUTO_COMPILE="0";
 
-  env.NIX_CFLAGS_COMPILE = lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "12") [
+  env.NIX_CFLAGS_COMPILE = toString (lib.optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "12") [
     # Needed with GCC 12 but breaks on darwin (with clang) or older gcc
     "-Wno-error=use-after-free"
-  ];
+  ]);
 
   # `make check` target does not define its prerequisites but expects them to
   # have already been built.  The list of targets below was built through trial