about summary refs log tree commit diff
path: root/pkgs/servers/http/pshs
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2018-08-03 17:49:01 -0400
committerGitHub <noreply@github.com>2018-08-03 17:49:01 -0400
commit7a337cde318020a0f91702bfefee85a7b31be06f (patch)
treec49f254cfc7923c8f60b589449ea0dc11e1fa694 /pkgs/servers/http/pshs
parent8c784998f64da2d4c388f40a03f6604c8a2e0b45 (diff)
parent3e034bac1ae1db6ded4eaae0de5153302e683ca5 (diff)
Merge pull request #44423 from obsidiansystems/configureFlags-cleanup
treewide: All configureFlags are lists 
Diffstat (limited to 'pkgs/servers/http/pshs')
-rw-r--r--pkgs/servers/http/pshs/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/http/pshs/default.nix b/pkgs/servers/http/pshs/default.nix
index 2205c91789f56..c38ca046a35b7 100644
--- a/pkgs/servers/http/pshs/default.nix
+++ b/pkgs/servers/http/pshs/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ libevent file qrencode miniupnpc ];
 
   # SSL requires libevent at 2.1 with ssl support
-  configureFlags = "--disable-ssl";
+  configureFlags = [ "--disable-ssl" ];
 
   meta = {
     description = "Pretty small HTTP server - a command-line tool to share files";