summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-10-28 10:17:49 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-30 04:50:37 +0100
commitac8eaa85070e736af1548faeeb4b9b6e9976494d (patch)
tree63237e5cb3c8d2815152ea725488de1a83572e42 /pkgs/games
parent20b02b80aa46b8dc96e256500e3c22fd0c22817d (diff)
downloadnixpkgs-ac8eaa85070e736af1548faeeb4b9b6e9976494d.tar
nixpkgs-ac8eaa85070e736af1548faeeb4b9b6e9976494d.tar.gz
nixpkgs-ac8eaa85070e736af1548faeeb4b9b6e9976494d.tar.bz2
nixpkgs-ac8eaa85070e736af1548faeeb4b9b6e9976494d.tar.lz
nixpkgs-ac8eaa85070e736af1548faeeb4b9b6e9976494d.tar.xz
nixpkgs-ac8eaa85070e736af1548faeeb4b9b6e9976494d.tar.zst
nixpkgs-ac8eaa85070e736af1548faeeb4b9b6e9976494d.zip
treewide: fix *Flags
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/frotz/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/frotz/default.nix b/pkgs/games/frotz/default.nix
index 3dbd7bd928b..788280fd820 100644
--- a/pkgs/games/frotz/default.nix
+++ b/pkgs/games/frotz/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "0gjkk4gxzqmxfdirrz2lr0bms6l9fc31vkmlywigkbdlh8wxgypp";
   };
 
-  makeFlags = ''CC=cc PREFIX=$(out) CURSES=-lncurses'';
+  makeFlags = [ "CC=cc" "PREFIX=$(out)" "CURSES=-lncurses" ];
 
   buildInputs = [ ncurses ];