summary refs log tree commit diff
path: root/pkgs/games/liquidwar
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-02-19 21:23:07 +0200
committerArtturin <Artturin@artturin.com>2023-02-22 21:23:04 +0200
commit6f6cc4a22db345c66bcb69c26469b0140ca3be44 (patch)
treee851a90035e6371da52a64732344873f43de0195 /pkgs/games/liquidwar
parent425e4250dbaab761b638542119b9c5cc604f1d86 (diff)
downloadnixpkgs-6f6cc4a22db345c66bcb69c26469b0140ca3be44.tar
nixpkgs-6f6cc4a22db345c66bcb69c26469b0140ca3be44.tar.gz
nixpkgs-6f6cc4a22db345c66bcb69c26469b0140ca3be44.tar.bz2
nixpkgs-6f6cc4a22db345c66bcb69c26469b0140ca3be44.tar.lz
nixpkgs-6f6cc4a22db345c66bcb69c26469b0140ca3be44.tar.xz
nixpkgs-6f6cc4a22db345c66bcb69c26469b0140ca3be44.tar.zst
nixpkgs-6f6cc4a22db345c66bcb69c26469b0140ca3be44.zip
treewide: use toString on list NIX_CFLAGS_COMPILE
with structuredAttrs lists will be bash arrays which cannot be exported
which will be a issue with some patches and some wrappers like cc-wrapper
Diffstat (limited to 'pkgs/games/liquidwar')
-rw-r--r--pkgs/games/liquidwar/5.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/liquidwar/5.nix b/pkgs/games/liquidwar/5.nix
index eab7941cbd1..ef7a42f0829 100644
--- a/pkgs/games/liquidwar/5.nix
+++ b/pkgs/games/liquidwar/5.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   hardeningDisable = [ "format" ];
 
-  NIX_CFLAGS_COMPILE = [
+  NIX_CFLAGS_COMPILE = toString [
     # Workaround build failure on -fno-common toolchains like upstream
     # gcc-10. Otherwise build fails as:
     #   ld: random.o:(.bss+0x0): multiple definition of `LW_RANDOM_ON'; game.o:(.bss+0x4): first defined here