summary refs log tree commit diff
path: root/pkgs/servers/shairport-sync
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-07-25 17:44:21 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-08-03 17:06:03 -0400
commit85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e (patch)
tree544a86c87280e6870fefe3005d2b9387a6b48581 /pkgs/servers/shairport-sync
parent632d24f11f51cc1581e921aa0eb8c6669296e8de (diff)
downloadnixpkgs-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar
nixpkgs-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.gz
nixpkgs-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.bz2
nixpkgs-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.lz
nixpkgs-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.xz
nixpkgs-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.zst
nixpkgs-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.zip
treewide: Make more complicated configureFlags lists
Diffstat (limited to 'pkgs/servers/shairport-sync')
-rw-r--r--pkgs/servers/shairport-sync/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/servers/shairport-sync/default.nix b/pkgs/servers/shairport-sync/default.nix
index e880e490a6a..d6ea05c9e6d 100644
--- a/pkgs/servers/shairport-sync/default.nix
+++ b/pkgs/servers/shairport-sync/default.nix
@@ -27,11 +27,11 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  configureFlags = ''
-    --with-alsa --with-pipe --with-pulseaudio --with-stdout
-    --with-avahi --with-ssl=openssl --with-soxr
-    --without-configfiles --without-initscript
-  '';
+  configureFlags = [
+    "--with-alsa" "--with-pipe" "--with-pulseaudio" "--with-stdout"
+    "--with-avahi" "--with-ssl=openssl" "--with-soxr"
+    "--without-configfiles" "--without-initscript"
+  ];
 
   meta = with stdenv.lib; {
     inherit (src.meta) homepage;