about summary refs log tree commit diff
path: root/pkgs/applications/audio/keyfinder-cli
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-11-26 18:44:44 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-11-26 23:45:31 +0100
commit2798b02ad03ebdc104fecc6439c0bcf5bb32fe6c (patch)
tree64bf789924f9b17cf4ab32f75692c0c10ed4f2f6 /pkgs/applications/audio/keyfinder-cli
parent8fe518e763917f478dc5e76eae7b2aea9c582cad (diff)
Convert some *Flags from strings to lists
Diffstat (limited to 'pkgs/applications/audio/keyfinder-cli')
-rw-r--r--pkgs/applications/audio/keyfinder-cli/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/audio/keyfinder-cli/default.nix b/pkgs/applications/audio/keyfinder-cli/default.nix
index dc90aeda47dff..701bf6f82f44e 100644
--- a/pkgs/applications/audio/keyfinder-cli/default.nix
+++ b/pkgs/applications/audio/keyfinder-cli/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ libav libkeyfinder ];
 
-  makeFlagsArray = "PREFIX=$(out)";
+  makeFlags = [ "PREFIX=$(out)" ];
 
   enableParallelBuilding = true;