about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2019-02-13 20:04:08 +0000
committerGitHub <noreply@github.com>2019-02-13 20:04:08 +0000
commit8384cfe455f3551839d9bfb483994d3e15b9e25c (patch)
tree307a7bbec2162fe2bcddffb0626f7b7d89cb8343 /pkgs/servers
parent7cc1f8e032b4e532cf4f9f407bad344918e24b3f (diff)
parent88ca6dd78a320d8eb8ee99a074e7ffceedeabc1e (diff)
Merge pull request #55129 from oxij/tree/move-defaults-to-package-files
all-packages.nix: move defaults to package files
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/uwsgi/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/uwsgi/default.nix b/pkgs/servers/uwsgi/default.nix
index 91053019ac12f..99eac2760dd11 100644
--- a/pkgs/servers/uwsgi/default.nix
+++ b/pkgs/servers/uwsgi/default.nix
@@ -1,8 +1,8 @@
 { stdenv, lib, fetchurl, pkgconfig, jansson, pcre
 # plugins: list of strings, eg. [ "python2" "python3" ]
-, plugins
-, pam, withPAM ? false
-, systemd, withSystemd ? false
+, plugins ? []
+, pam, withPAM ? stdenv.isLinux
+, systemd, withSystemd ? stdenv.isLinux
 , python2, python3, ncurses
 , ruby, php-embed, mysql
 }: