summary refs log tree commit diff
path: root/pkgs/tools/text/qgrep
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/tools/text/qgrep
parent226e14914512d33cee00543cd947cf74d50a1258 (diff)
downloadnixpkgs-3251013cc149d535d857e6bca6da28a61bf81faa.tar
nixpkgs-3251013cc149d535d857e6bca6da28a61bf81faa.tar.gz
nixpkgs-3251013cc149d535d857e6bca6da28a61bf81faa.tar.bz2
nixpkgs-3251013cc149d535d857e6bca6da28a61bf81faa.tar.lz
nixpkgs-3251013cc149d535d857e6bca6da28a61bf81faa.tar.xz
nixpkgs-3251013cc149d535d857e6bca6da28a61bf81faa.tar.zst
nixpkgs-3251013cc149d535d857e6bca6da28a61bf81faa.zip
treewide: env.NIX_CFLAGS_COMPILE use toString on result of optionals
env values must be strings
Diffstat (limited to 'pkgs/tools/text/qgrep')
-rw-r--r--pkgs/tools/text/qgrep/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/qgrep/default.nix b/pkgs/tools/text/qgrep/default.nix
index ed6a409b269..7db56539bf2 100644
--- a/pkgs/tools/text/qgrep/default.nix
+++ b/pkgs/tools/text/qgrep/default.nix
@@ -21,10 +21,10 @@ stdenv.mkDerivation rec {
 
   buildInputs = lib.optionals stdenv.isDarwin [ CoreServices CoreFoundation ];
 
-  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=mismatched-new-delete"
-  ];
+  ]);
 
   postPatch = lib.optionalString stdenv.isAarch64 ''
     substituteInPlace Makefile \